如何禁用 DataGridView 的键盘快捷键?

发布于 2024-08-28 16:02:49 字数 288 浏览 6 评论 0原文

我刚刚注意到 DataGridView 有一个默认快捷方式,因此每当您按 Ctrl + H 时,DataGridView 的编辑控件退格,可以删除单元格内的整个选择。

这可能会变得非常烦人,因为我想在按下 Ctrl + H 时打开替换框。有没有什么方法可以停止退格,同时仍然能够使用它来打开替换框?

我正在运行 C# 2.0,但如果较新的 C# 有解决方案,我可以将应用程序更新到 3.5。

I've just noticed that DataGridViews 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

楠木可依 2024-09-04 16:02:49

这进入您的表单代码:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{     
  if (keyData == (Keys.Control | Keys.H))
  {
    //ShowReplaceDialog() or whatever it is you want to do here.
    return true; //we handled the key
  }

  return base.ProcessCmdKey(ref msg, keyData); //we didn't handle it
}

This goes into your form code:

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{     
  if (keyData == (Keys.Control | Keys.H))
  {
    //ShowReplaceDialog() or whatever it is you want to do here.
    return true; //we handled the key
  }

  return base.ProcessCmdKey(ref msg, keyData); //we didn't handle it
}
流星番茄 2024-09-04 16:02:49
void m_dgv_KeyDown(object sender, KeyEventArgs e)
    {
               if (e.KeyCode == (Keys.Control | Keys.H))
                {
                  e.Handled = true;
                }
   }

void m_dgv_KeyDown(object sender, KeyEventArgs e)
    {
               if (e.KeyCode == (Keys.Control | Keys.H))
                {
                  e.Handled = true;
                }
   }

会傲 2024-09-04 16:02:49

/保存前,将焦点置于另一个控件上,然后保存。

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{

    if (keyData == Keys.F5)
    {
        label1.Focus();
        btnSave_Click(null, null);
    }

    return base.ProcessCmdKey(ref msg, keyData); //we didn't handle it
}

/Before saving, place the focus on another control and then save.

protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{

    if (keyData == Keys.F5)
    {
        label1.Focus();
        btnSave_Click(null, null);
    }

    return base.ProcessCmdKey(ref msg, keyData); //we didn't handle it
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文