gpt4 book ai didi

python - 在 PyQT4 中使用循环创建按钮网格

转载 作者:行者123 更新时间:2023-11-28 20:27:29 25 4
gpt4 key购买 nike

有没有办法在 PyQT4 中使用循环创建按钮网格?

例如,具有以下效果的东西:

for j in range(0, 10):
for k in range(0, 10):
grid.addbutton(j, k)

谢谢。

最佳答案

当然有。 QGridLayout在这种情况下可能会有用。

这是一个最小的例子:

import sys
from PyQt4 import QtGui

app = QtGui.QApplication(sys.argv)
widget = QtGui.QWidget()
layout = QtGui.QGridLayout()

buttons = {}

for i in range(10):
for j in range(10):
# keep a reference to the buttons
buttons[(i, j)] = QtGui.QPushButton('row %d, col %d' % (i, j))
# add to the layout
layout.addWidget(buttons[(i, j)], i, j)

widget.setLayout(layout)
widget.show()
sys.exit(app.exec_())

结果:

QGridLayout

关于python - 在 PyQT4 中使用循环创建按钮网格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8554610/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com