pyqt4中的命令链接按钮

发布于 2024-11-04 17:49:33 字数 241 浏览 1 评论 0原文

以下是我的代码的一部分

QObject.connect( self.UI.commandLinkButton, SIGNAL("clicked()") ,self.displayShow() )

理想情况下,它应该在单击 commandLinkBut​​ton 时调用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七分※倦醒 2024-11-11 17:49:33

尝试这样做:

QObject.connect( self.UI.commandLinkButton, SIGNAL("clicked()") ,self.displayShow)

注意:函数名称后面没有 ()

Try with this:

QObject.connect( self.UI.commandLinkButton, SIGNAL("clicked()") ,self.displayShow)

Note: no () after the function name.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文