I have One MDI (Menu Driven) and Some .ui Files . I can load UI files
directly from following standalone code


from PyQt4 import QtGui, uic
app = QtGui.QApplication(sys.argv)
widget = uic.loadUi('demo.ui')
widget.show()
sys.exit(app.exec_())

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 ??
_______________________________________________
PyQt mailing list    [email protected]
http://www.riverbankcomputing.com/mailman/listinfo/pyqt

Reply via email to