from Qt.Gui import QApplication, QPushButton
from sys import argv

app = QApplication('t1')
hello = QPushButton("Hello world!", None)
hello.resize(100, 30)
hello.show()
app.run()

Beispiel #2
0
from sys import argv, exit
from Qt.Gui import QApplication, QWidget

app = QApplication()
w1 = QWidget(None)
w2 = QWidget(w1)
w1.show()
print dir(w1)
code = app.run()
exit(code)