QPushButton在GroupBox内不再响应



所以创建了一个QGroupBox,其中包含一堆按钮和标签。一切都很好,现在突然按钮都无法点击了。事实上,分组框中没有任何内容是可点击的。有什么想法吗?我一直在揪头发,想看看哪里出了问题。

已经简化了代码并进行了测试。没有错误,只是无法点击按钮。我想知道这是不是育儿问题?

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()

您需要在PxJob:中的__init__末尾添加此行

self.setLayout(grid)

相关内容

  • 没有找到相关文章

最新更新