Differences between revisions 1 and 2
Revision 1 as of 2009-11-11 18:02:25
Size: 205
Editor: snifi
Comment:
Revision 2 as of 2009-11-11 18:04:34
Size: 226
Editor: snifi
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
attachment:picpy011.png
Line 4: Line 4:

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