在 WinForms 应用程序控件中 + C 没有在我的富文本框中进行复制
我在 Windows 窗体应用程序上添加了一个带有用于复制和粘贴的快捷键(Control+C 和 Control+V)的菜单。该应用程序有一个 Richtextbox 控件。菜单项的事件调用 RichTextBox.Copy 和 RichTextBox.Paste,但我无法使用快捷键。 Control+c & +v 什么也不做。
我缺少一个步骤吗?
I added a menu with short cut keys for copy and past (Control+C & Control+V) on a windows forms application. The application has a single richtextbox control. The events for the menu items call RichTextBox.Copy and RichTextBox.Paste but I can't get the short cut keys to work. Control+c & +v do nothing.
Is there a step I am missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
richtextbox ShortcutsEnabled 属性是否设置为 true?
尝试从菜单中删除快捷键,看看是否有效?
Is the richtextbox ShortcutsEnabled property is set to true?
Try to remove the shortcut key from the menu and see if it works?