我使用Ok,Cancel,Reset。从QtDesigner创建了一个标准的buttonBox。
我使用
成功连接了Ok和Cancel按钮self.buttonBox.accepted.connect(self.accept)
self.buttonBox.rejected.connect(self.reject)
甚至定义我自己的接受函数。
那么如何连接重置按钮来说出功能“foo()”。我真的不知道。我阅读了有关分配角色和内容的文档,以及令人困惑的内容。
提前致谢。
答案 0 :(得分:11)
在python中.-
self.buttonBox.button(QtGui.QDialogButtonBox.Reset).clicked.connect(foo)
答案 1 :(得分:1)