datetime:2019/5/20 15:58
author:nzb
创建提示
import sys
from PyQt5.QtWidgets import QApplication, QDialog, QLabel, QHBoxLayout, QPushButton
from PyQt5 import QtGui
class UI_demo(QDialog):
"""用户界面"""
def __init__(self):
super().__init__()
self.title = 'PyQt5 WhaiIsThis Class'
self.left = 600
self.top = 200
self.width = 500
self.height = 200
self.initWindow()
def initWindow(self):
self.setWindowIcon(QtGui.QIcon('../img/home.ico'))
self.setGeometry(self.left, self.top, self.width, self.height)
self.setWindowTitle(self.title)
hbox = QHBoxLayout()
label = QLabel("Focus and press Shift + F1")
hbox.addWidget(label)
button = QPushButton('click me', self)
button.setWhatsThis("This is a button that you can click on this")
hbox.addWidget(button)
self.setLayout(hbox)
self.show()
if __name__ == "__main__":
app = QApplication(sys.argv)
ex = UI_demo()
sys.exit(app.exec_())