创建一个带有一堆按钮的QGroupBox,包含标签。一切都工作正常,现在突然按钮无法点击。实际上,groupbox中的任何内容都不可点击。有任何想法吗?我一直在试着看看我哪里出错了。
简化了代码并对其进行了测试。没有错误只是无法点击按钮。我想知道它是否是一个育儿问题?
import sys
from PyQt4.QtGui import *
from PyQt4.QtCore import *
class PxJob(QWidget):
def __init__(self, parent, geo, title):
super(PxJob, self).__init__(parent)
frame = QGroupBox(parent)
frame.setGeometry(geo)
frame.setTitle(title)
grid = QGridLayout()
frame.setLayout(grid)
butt = QPushButton('test')
butt.setCheckable(True)
grid.addWidget(butt)
class PxManager(QMainWindow):
def __init__(self, *args):
super(PxManager, self).__init__()
self.initUI()
def initUI(self):
# Main Layout
job = PxJob(self, QRect(10,60,830,120), 'Shot 02')
col = QVBoxLayout()
col.addWidget(job)
window = QWidget()
window.setLayout(col)
self.setCentralWidget(window)
self.setGeometry(300, 300, 850, 200)
self.setWindowTitle('Manager')
self.show()
def main():
app = QApplication(sys.argv)
ruc = PxManager()
sys.exit(app.exec_())
if __name__ == '__main__':
main()
答案 0 :(得分:1)
您需要在__init__
中的PxJob
末尾添加此行:
self.setLayout(grid)