Differences between revisions 2 and 3
Revision 2 as of 2009-11-11 18:04:34
Size: 226
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 {{attachment:picpy011.png}}

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_())