Easy Coding
  Forum Wiki Tagging Projekte Karte RSS
» Start
» All Recent Changes
» Wiki Suche
» Wiki Hilfe

Coder How To's

Algorithmen Informationen

edit SideBar

Neue Wiki Eintrage finden Sie unter easy-coding.de/wiki.

Python QT: "Hello World"

python-qt-hello-world.py
  1. import sys
  2. from qt import *
  3.  
  4. app=QApplication(sys.argv)
  5. label=QLabel("Hello World",None)
  6. app.setMainWidget(label)
  7. label.show()
  8. app.exec_loop()
Zuletzt geändert am 19.01.2007 19:34 Uhr
  Impressum