您最多能選擇 25 個主題 主題必須以字母或數字為開頭,可包含連接號「-」且最長為 35 個字元。
pytqt/examples2/tut1.py

17 行
226 B

#!/usr/bin/env python
# TQt tutorial 1.
import sys
from python_tqt.qt import *
a = TQApplication(sys.argv)
hello = TQPushButton("Hello world!",None)
hello.resize(100,30)
a.setMainWidget(hello)
hello.show()
a.exec_loop()