标签:
# -*- coding: cp936 -*-
import sys
from PyQt4 import QtGui
class Boxlayout(QtGui.QWidget):
def __init__(self,parent=None):
QtGui.QWidget.__init__(self,parent)
self.setWindowTitle(u‘布局‘)
ok=QtGui.QPushButton(‘OK(O)‘)
cancel=QtGui.QPushButton(‘Cancel(C)‘)
hbox=QtGui.QHBoxLayout()
hbox.addStretch(1)
hbox.addWidget(ok)
hbox.addWidget(cancel)
vbox=QtGui.QVBoxLayout()
vbox.addStretch(1)
vbox.addLayout(hbox)
self.setLayout(vbox)
self.resize(250,150)
app=QtGui.QApplication(sys.argv)
qb=Boxlayout()
qb.show()
sys.exit(app.exec_())
如图:
标签:
原文地址:http://www.cnblogs.com/mhxy13867806343/p/4156347.html