我有一个C#winform,上面有1个按钮。
现在,当我运行我的应用程序时,该按钮会自动获得焦点。
问题是我的表单的KeyPress
事件无法正常工作,因为按钮已聚焦。
我在this.Focus();
事件上尝试了FormLoad()
,但是KeyPress事件仍然无法正常工作。
最佳答案
您需要为表单覆盖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
值的焦点的第一个控件。在这种情况下,这就是您的按钮。关于c# - 火灾表单KeyPress事件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44618106/