Changes between Version 11 and Version 12 of wade/QT


Ignore:
Timestamp:
Oct 11, 2011, 11:17:08 PM (13 years ago)
Author:
wade
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • wade/QT

    v11 v12  
    2424    結果:1.0.7
    2525
     26 3. 測試:
     27{{{
     28#!python
     29
     30# Import PySide classes
     31import sys
     32from PySide.QtCore import *
     33from PySide.QtGui import *
     34 
     35 
     36# Create a Qt application
     37app = QApplication(sys.argv)
     38# Create a Label and show it
     39label = QLabel("Hello World")
     40label.show()
     41# Enter Qt application main loop
     42app.exec_()
     43sys.exit()
     44}}}
     45
     46
    2647= Reference =
    2748 * http://qt.nokia.com/ 官網。