我正在使用 PySide 编写一个应用程序,并添加了两个按钮。但是,当我运行程序时,按钮会缩放窗口的长度,这不是我想要的。我想要的是按钮尺寸小并位于右侧。你怎么做到这一点?有什么我可以使用的方法吗?
问问题
1725 次
1 回答
0
我不知道你用过什么布局或者你想用什么,也许这会有所帮助:
使用盒子布局:
#!/usr/local/bin/python2.7
# -*- coding: utf-8 -*-
import sys
from PySide import QtGui
class Sample(QtGui.QWidget):
def __init__(self):
super(Sample, self).__init__()
self.initUI()
def initUI(self):
self.setGeometry(300, 300, 800, 600)
self.setWindowTitle('Sample')
btn1 = QtGui.QPushButton("Button 1")
hbox = QtGui.QHBoxLayout()
hbox.addStretch(1)
hbox.addWidget(btn1)
self.setLayout(hbox)
self.show()
def main():
app = QtGui.QApplication(sys.argv)
ex = Sample()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
于 2013-08-15T16:41:21.203 回答