gpt4 book ai didi

c# - 我无法让 ProcessCmdKey 工作?

转载 作者:行者123 更新时间:2023-11-30 12:41:36 24 4
gpt4 key购买 nike

我的代码:

 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;
}
}

但我得到的都是错误:

(namespace).(class).ProcessCmdKey(ref System.Windows.Forms.Message, System.Windows.Forms.Keys): no suitable method found to override.

如果我关闭

 return true;

对于

 return base.ProcessCmdKey (ref msg, keyData);

我得到错误:

'object' does not contain a definition for ProcessCmdKey.

事实上,我的 ProcessCmdKey 文本甚至没有变成绿色,但当我知道它应该是绿色时它会保持黑色。

它与我使用的 .NET Framework 版本有关吗?如果有的话,我正在使用 Microsoft Visual Studio 2013 来编译和运行我的代码。

还是与我类(class)的安全级别有关?我正在使用公共(public)级别的类

作为初学者,我只是在学习如何注册用户键输入。我已经在整个互联网上查看了有关此主题的信息,这与提出的代码相同,但我无法使其正常工作。欢迎任何帮助。

最佳答案

ProcessCmdKey 方法在类 System.Windows.Forms.Control 中定义。因此,除非您在控件(或表单)中覆盖它,否则这是行不通的。

您的类 Class1 不是从控件继承的,因此您不能覆盖该方法(因为它不存在)。

错误信息

'object' does not contain a definition for ProcessCmdKey

几乎可以准确地告诉您这一点。 object 是您的 Class1(隐式)的基类,object 类(所有内容的基类)没有该方法。

Form.ProcessCmdKey on MSDN

Control.ProcessCmdKey on MSND

关于c# - 我无法让 ProcessCmdKey 工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37096497/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com