<div>I have One MDI (Menu Driven) and Some .ui Files . I can load UI files directly from following standalone code</div>
<div> </div>
<div> </div>
<div>from PyQt4 import QtGui, uic</div>
<div>app = QtGui.QApplication(sys.argv)<br>widget = uic.loadUi('demo.ui')<br>widget.show()<br>sys.exit(app.exec_())</div>
<div> </div>
<div>While i want to RUN ui files within MDI Window , When I click on Menus It should load "UI" files within MDI window . .. Is it possible ??</div>
<div> </div>