Changes between Version 11 and Version 12 of wade/QT
- Timestamp:
- Oct 11, 2011, 11:17:08 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
wade/QT
v11 v12 24 24 結果:1.0.7 25 25 26 3. 測試: 27 {{{ 28 #!python 29 30 # Import PySide classes 31 import sys 32 from PySide.QtCore import * 33 from PySide.QtGui import * 34 35 36 # Create a Qt application 37 app = QApplication(sys.argv) 38 # Create a Label and show it 39 label = QLabel("Hello World") 40 label.show() 41 # Enter Qt application main loop 42 app.exec_() 43 sys.exit() 44 }}} 45 46 26 47 = Reference = 27 48 * http://qt.nokia.com/ 官網。