Python/Tkinter:获取完整的事件名称?
如何获取活动的全名?例如,对于由 “
触发的事件,Event.keysym
仅显示“c”。我怎样才能获得“控制权”?
How do I get the full name of an event? For example, Event.keysym
only shows "c" for an event triggered by "<Control-c>"
. How can I get the "Control" too?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Event.state 保存修饰键的“或”状态。因此,您可以尝试类似的操作:
请参阅此处了解更多详情。
Event.state holds the OR'd together states of the modifier keys. So you could try something like:
See here for more details.