9
p/PyQt4.py
Normal file
9
p/PyQt4.py
Normal file
@@ -0,0 +1,9 @@
|
||||
import sys
|
||||
from PyQt4 import QtGui
|
||||
|
||||
app = QtGui.QApplication(sys.argv)
|
||||
widget = QtGui.QWidget()
|
||||
helloWorld = QtGui.QLabel(widget)
|
||||
helloWorld.setText("Hello World")
|
||||
widget.show()
|
||||
sys.exit(app.exec_())
|
||||
Reference in New Issue
Block a user