我的代码:
using System.Windows.Forms
class Class1
{
protected override bool ProcessCmdKey (ref Message msg, Keys keyData)
{
if (keyData == Keys.Up)
{
Console.WriteLine("You pressed the Up arrow key");
return true;
}
...//and other code lines for Keys.Down, Keys.Left, Keys.Right
return true;
}
}
但我得到的所有错误:
如果我关掉
return true;
为了
return base.ProcessCmdKey (ref msg, keyData);
我收到错误:
事实上,我的 ProcessCmdKey 文本甚至没有变成绿色,但是当我知道它应该是绿色时它会保持黑色。
它与我使用的 .NET Framework 版本有关吗?如果有的话,我正在使用 Microsoft Visual Studio 2013 来编译和运行我的代码。
还是与我类(class)的安全级别有关?我正在与公共(public)级别的类(class)一起工作
作为初学者,我只是在学习如何注册用户按键输入。我已经在互联网上查看了有关此主题的所有内容,这是正在提出的相同代码,但我无法使其正常工作。欢迎任何帮助。
最佳答案
ProcessCmdKey
方法在 System.Windows.Forms.Control
类中定义。因此,除非您在控件(或表单)中覆盖它,否则这是行不通的。
您的类 Class1
不是从控件继承的,因此您不能覆盖该方法(因为它不存在)。
错误信息
几乎可以准确地告诉你。 object
是 Class1
(隐式)的基类,而 object
类(所有的基类)没有该方法。
Form.ProcessCmdKey on MSDN
Control.ProcessCmdKey on MSND
关于c# - 我无法让 ProcessCmdKey 工作?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/37096497/