wxpython 在整个应用程序中剪切复制并粘贴
我正在开发一个带有多个 TextCtrl 和 ComboBox 小部件的小型应用程序。我希望当我按下 Ctrl-C Ctrl-V 和 Ctrl-X 键时,我会得到复制、粘贴和剪切适当条目的通常行为。
我现在得到的是,虽然我可以右键单击并显示文本 copd/past/cutd,但我无法通过键绑定或菜单项。我怎样才能以简单的方式获得这个?
I'm developing a small application with multiple TextCtrl and ComboBox widgets. I want that when I press the key Ctrl-C Ctrl-V and Ctrl-X I get the usual behaviour of copying, pasting and cutting in the appropriate entry.
What I obtain right now is that, while I can right-click and have the text copd/past/cutd, I can't through the keybindings or the menu entries. How can I obtain this in a simple way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
菜单键绑定默认使用 Alt-first_menu_letter ->子菜单第一个字母。
所选项目的菜单事件应绑定相应的事件处理程序:
对于复制方法,您首先用鼠标选择要复制的文本。然后,您可以通过以下方式获取焦点小部件(具有要复制的选定字符串的特定文本控件):
通过这种方式,现在您可以从该小部件中获取选定的字符串:
并且必须执行相同的操作才能将复制的文本粘贴到你放置光标的textctrl。
这里有一个工作示例:
Menu keybindings work by default with Alt-first_menu_letter -> submenu_first_letter.
The menu event of the selected item should bind the corresponding event handler:
for a copy method, you first select the text you want to copy with the mouse. Then you can get the widget that is focused (the specific textcontrol with the selected string to be copied) with:
in this way now you can get the selected string from that widget:
And the same has to be done for pasting the copied text in the textctrl you situate the cursor.
Here you have a working example: