今天学习到了布局方式:
对于我们来说布局分为①绝对定位方式(用我们的move函数来写)
也就是我们窗口的左上角
②盒布局QHboxLayout和QVboxLayout
def initUI(self):
text=QTextEdit(self)
text.resize(text.size())
text.move(10,20)
cancel=QPushButton("取消",self)
confirm=QPushButton("确认",self)
#设置水平布局
hbox=QHBoxLayout()
hbox.addStretch(1) # 增加弹性空间
hbox.addWidget(confirm)
hbox.addWidget(cancel)
vbox=QVBoxLayout()
vbox.addStretch(1)
vbox.addLayout(hbox)#把水平布局放入垂直布局中
self.setLayout(vbox)#布局设置到窗口上