您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
pytqt/examples3/tut1.py

17 行
242 B

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