pyqt4中的命令链接按钮
以下是我的代码的一部分
QObject.connect( self.UI.commandLinkButton, SIGNAL("clicked()") ,self.displayShow() )
理想情况下,它应该在单击 commandLinkButton 时调用 displayShow() 函数,但即使没有单击按钮,它也会调用该函数。
可能的原因是什么?
谢谢
Following is a part of my code
QObject.connect( self.UI.commandLinkButton, SIGNAL("clicked()") ,self.displayShow() )
Ideally it should call the displayShow() function on clicking the commandLinkButton but it is calling the function even without clicking the button.
What could be the possible reason?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试这样做:
注意:函数名称后面没有
()
。Try with this:
Note: no
()
after the function name.