C/C++教程

MDI窗体中TextBox RichTextBox等Ctrl C/V快捷键失灵

本文主要是介绍MDI窗体中TextBox RichTextBox等Ctrl C/V快捷键失灵,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

原因:父窗体中ToolStripMenuItem默认的快捷键和系统快捷键冲突

解决方式:注释父窗体中默认的Ctrl+C和Ctrl+V快捷键

xxxDesigner.cs

//this.copyToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));

 
//this.pasteToolStripMenuItem.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.V)));

 

这篇关于MDI窗体中TextBox RichTextBox等Ctrl C/V快捷键失灵的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!