Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2009-11-11 18:02:25
Size: 205
Editor: snifi
Comment:
Revision 3 as of 2011-09-20 05:28:51
Size: 230
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
{{attachment:picpy011.png}}
Line 4: Line 4:

picpy011.png

   1 import sys
   2 from PyQt4.QtCore import *
   3 from PyQt4.QtGui import *
   4 
   5 app=QApplication(sys.argv)
   6 window=QWidget()
   7 window.resize(320,240)
   8 window.show()
   9 sys.exit(app.exec_())