如何禁用 DataGridView 的键盘快捷键?
我刚刚注意到 DataGridView
有一个默认快捷方式,因此每当您按 Ctrl + H 时,DataGridView
的编辑控件退格,可以删除单元格内的整个选择。
这可能会变得非常烦人,因为我想在按下 Ctrl + H 时打开替换框。有没有什么方法可以停止退格,同时仍然能够使用它来打开替换框?
我正在运行 C# 2.0,但如果较新的 C# 有解决方案,我可以将应用程序更新到 3.5。
I've just noticed that DataGridView
s have a default shortcut so that whenever you press Ctrl + H, the DataGridView
's editing control backspaces, and can delete your entire selection within the cell.
This can get quite annoying since I want to open a Replace box whenever Ctrl + H is pressed. Is there any way to stop the backspacing while still being able to use it to open the replace box?
I'm running C# 2.0, but I could update my application to 3.5 if the newer C# has a solution.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这进入您的表单代码:
This goes into your form code:
/保存前,将焦点置于另一个控件上,然后保存。
/Before saving, place the focus on another control and then save.