gpt4 book ai didi

c# - 试图检测按键

转载 作者:行者123 更新时间:2023-11-30 13:59:38 25 4
gpt4 key购买 nike

我制作了一个检测按键按下的方法,但它不起作用!这是我的代码

void KeyDetect(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.W && firstload == true)
{
MessageBox.Show("Good, now move to that box over to your left");
firstload = false;
}
}

我也尝试制作一个 keyeventhandler 但是,它说“无法分配给键检测,因为它是一个方法组”

public Gwindow()
{
this.KeyDetect += new KeyEventHandler(KeyDetect);
InitializeComponent();
}

最佳答案

像这样使用按键事件:

private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
if (e.KeyCode == Keys.F1 && e.Alt)
{
//do something
}
}

关于c# - 试图检测按键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12981024/

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