Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 14th, 2012  |  syntax: Python  |  size: 0.22 KB  |  hits: 34  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. loader = QUiLoader()
  2. file = QtCore.QFile(os.path.join(os.path.split(__file__)[0], "Prototypes/MainWindow.ui"))
  3. file.open(QtCore.QFile.ReadOnly)
  4. self.ui = loader.load(file)
  5. file.close()
  6.  
  7. self.setCentralWidget(self.ui)