0

它给了我这样的错误,我似乎无法弄清楚问题所在。

private void Form1.KeyDown(object sender, KeyEventArgs e)  // **THE ERROR HERE**   
    {
        if (ListBox1.Items.Contains(e.KeyCode))
        {
            ListBox1.Items.Remove(e.KeyCode);
            ListBox1.Refresh();
            if (timer1.Interval > 400)
            {

                timer1.Interval -= 10;
            }
            if (timer1.Interval > 250)
            {
                timer1.Interval -= 7;

            }
            if (timer1.Interval > 100)
            {
                timer1.Interval -= 2;

            }
            difficultyProgressBar.Value = 800 - timer1.Interval;
            stats.Update(true);


        }
        else
        {

            stats.Update(false);

        }


        correctLabel.Text = "Correct: " + stats.correct;
        missedLabel.Text = "Missed: " + stats.missed;
        totalLabel.Text = "Total: " + stats.total;
        accuracyLabel.Text = "Accuracy: " + stats.accuracy + "%";


    }

这是一些教程的代码,所以它应该可以工作。可能是什么问题?

4

4 回答 4

6

您的第一行应如下所示:

private void Form1_KeyDown(object sender, KeyEventArgs e)
{
    ...
}

没有点。

点使编译器认为您指的是表单的 KeyDown 事件,而您只需要一个侦听该事件的方法。

于 2012-05-15T19:41:02.897 回答
3

Interfacename.methodname 语法为显式接口实现保留。接口只包含公共方法,因此“私有”是非法的。

于 2012-05-15T19:42:12.760 回答
1

在 VB 中,当您声明一个事件处理程序时,您会继续添加Handles <Class>.<Event>,它会自动为您连接所有内容。在 C# 中,事件处理程序只是附加到事件的方法。因此,您应该将方法名称重命名为Form1_KeyDown。但是,您仍然需要连接它(通过 Visual Studio 设计器或在代码中)。

public class Form1 : Form
{
    ...
    public Form1()
    {
        InitializeComponent();
        this.KeyDown += new KeyEventHandler(this.Form1_KeyDown);
    }
    ...
    private void Form1_KeyDown(object sender, KeyEventArgs e) { ... }
}
于 2012-05-15T19:42:49.227 回答
0

我刚收到此错误,发现标记方法上方的代码中缺少右括号。坏括号对搞砸了私有布尔方法的识别......

于 2021-02-16T19:14:27.617 回答