PyQt +触发按钮的快捷方式

发布于 2024-08-17 13:41:15 字数 118 浏览 1 评论 0原文

如何配置键盘快捷键以单击 PyQT 应用程序中的特定按钮?例如:Ctrl + 1 单击一个按钮,而 Ctrl + 2 单击另一个按钮?

How do I configure keyboard shortcuts to click specific buttons in a PyQT app? Eg: Ctrl + 1 to click one button while Ctrl + 2 to click the other?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

旧人九事 2024-08-24 13:41:15

使用 QtGui.QShortcut:使用 < 构建它code>QKeySequence,并且当快捷方式的父小部件具有焦点时键入该键序列时,它会发出 activated() 信号(当然,您将这些信号连接到您选择的插槽,包括按钮”)。

Use QtGui.QShortcut: you build it with a QKeySequence, and it emits the activated() signal when that key sequence is typed while the shortcut's parent widget has focus (of course, you connect those signals to slots of your choosing, including buttons').

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