Learn To Program
Increase Your Knowlegde and Build Your Skill!
Pages
(Move to ...)
Home
Me
▼
Wednesday, March 30, 2011
PyQt - Introduction
Below is the basic setting for displaying the app using PyQt:
import sys
from PyQt4 import QtGui
app = QtGui.QApplication(sys.argv)
widget = QtGui.QWidget()
widget.show()
sys.exit(app.exec_())
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment