GMgKe586q6suSQnyqZLlGCooeWM

Pages

Search

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_())
Share/Bookmark

No comments:

Post a Comment