我有一个C#winform,我有1个按钮 现在,当我运行我的应用程序时,该按钮会自动获得焦点。
问题是KeyPress
我的表单事件无法正常工作,因为该按钮已被聚焦。
我在this.Focus();
事件上尝试了FormLoad()
,但KeyPress事件仍无效。
答案 0 :(得分:10)
您需要覆盖表单的ProcessCmdKey
method。这是您通知子控件具有键盘焦点时发生的关键事件的唯一方式。
示例代码:
protected override bool ProcessCmdKey(ref Message msg, Keys keyData)
{
// look for the expected key
if (keyData == Keys.A)
{
// take some action
MessageBox.Show("The A key was pressed");
// eat the message to prevent it from being passed on
return true;
// (alternatively, return FALSE to allow the key event to be passed on)
}
// call the base class to handle other key events
return base.ProcessCmdKey(ref msg, keyData);
}
至于为什么this.Focus()
不起作用,这是因为表单本身不能有焦点。特定的控件必须具有焦点,因此当您将焦点设置到表单时,它实际上将焦点设置为可以接受具有最低TabIndex
值的焦点的第一个控件。在这种情况下,这是你的按钮。
答案 1 :(得分:4)
尝试将表单的KeyPreview属性设置为True。
答案 2 :(得分:1)
在主窗体上设置keyPreview = true
答案 3 :(得分:0)
我会使用以下一个:
将按钮的 TabIndex 属性设置为0.
将按钮的 IsDefault 属性设置为true - 因此,按 ENTER 键时会触发该按钮。
答案 4 :(得分:0)
我遇到了同样的问题而且我知道很久以前就回答了这个问题,但我对这个问题的解决方案来自另一个堆栈溢出问题,其中我的唯一按钮抓住并保持焦点。我接受了用户的建议并创建了一个无法获得焦点的按钮。
也许有人会觉得这很有用:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace I2c_Programmer {
class NoSelectButton : Button{
public NoSelectButton() {
SetStyle(ControlStyles.Selectable, false);
}
}
}
进入你的设计师,在那里创建按钮并用你的新班级"新的NoSelectButton();"
切换出新的系统...按钮