def __init__(self):
super(MyDialog, self).__init__()
self.label = QtGui.QLabel(
u'Press <ESC> to exit. Some non-ascii chars: ??š?íá?'
u'\nor wait some seconds',
self)
self.setWindowTitle('Hello World from PySide')
self.resize(400, 200)
self.show()
# close window after 1.5 seconds
QtCore.QTimer.singleShot(1500, self.close)
评论列表
文章目录