PyQt +触发按钮的快捷方式
如何配置键盘快捷键以单击 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 QtGui.QShortcut:使用 < 构建它code>QKeySequence,并且当快捷方式的父小部件具有焦点时键入该键序列时,它会发出
activated()
信号(当然,您将这些信号连接到您选择的插槽,包括按钮”)。Use QtGui.QShortcut: you build it with a
QKeySequence
, and it emits theactivated()
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').