<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(&#39;demo.ui&#39;)<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 &quot;UI&quot; files within MDI window . .. Is it possible ??</div>
<div> </div>