|
|
2009-08-26
, 18:45
|
|
Posts: 3,319 |
Thanked: 5,610 times |
Joined on Aug 2008
@ Finland
|
#32
|
|
|
2009-08-26
, 19:01
|
|
Posts: 6 |
Thanked: 0 times |
Joined on Aug 2009
|
#33
|
![]() |
| Tags |
| pyqt, python |
| Thread Tools | |
|
#!/usr/bin/env python2.5 from PyQt4.QtCore import * from PyQt4.QtGui import * import sys if __name__=="__main__": app = QApplication(sys.argv) label = QLabel('Hello!') label.show() sys.exit(app.exec_())