搭建好了开发环境,并测试了创建一个窗口OK
接下来就尝试在一开始的测试代码中修改窗口属性并添加子控件
# -*- coding: cp936 -*-
import sys
from PyQt5 import QtCore, QtGui, QtWidgets
class QtTestWindow(QtWidgets.QWidget):
#QtTestWindow类继承QtWidgets.QWidget类
def __init__(self):
#重载类初始化函数
super(QtTestWindow,self).__init__()#super关键字自行百度
#pyqt窗口必须在QApplication方法中使用
app = QtWidgets.QApplication(sys.argv)
myWin = QtTestWindow() #创建自定义的窗体类对象
myWin.resize(600, 200) #重设窗口大小
myWin.setWindowTitle("Hello QT") #设置窗口标题
#添加第一个label
label1=QtWidgets.QLabel(myWin) #绑定label到窗口
label1.setText("hello") #设置label标签的文字内容
label1.setGeometry(270,100,60,20)#设置控件相对父窗口位置宽高 参数(x,y,w,h)
#添加第二个label
label2=QtWidgets.QLabel(myWin)
label2.setText("world")
label2.setGeometry(270,120,60,20)
#添加一个button
btnOK = QtWidgets.QPushButton(myWin)#绑定Button到窗口
btnOK.setText("OK")
btnOK.setGeometry(270,140,60,20)
myWin.show()#调用窗口显示
sys.exit(app.exec_()) #启动事件循环