Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
pytqt/examples3/tut1.py

17 rader
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())