Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Trying to detect keypress

Tags:

c#

keypress

I made a method that detects when a key is pressed, but its not working! Heres my code

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

I also tried to make a keyeventhandler but, it sais "cannot assign to key detect because it is a method group"

public Gwindow()
{
    this.KeyDetect += new KeyEventHandler(KeyDetect);
    InitializeComponent();    
}
like image 254
Adam_MOD Avatar asked Dec 09 '22 20:12

Adam_MOD


1 Answers

Use keypress event like this:

private void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
    if (e.KeyCode == Keys.F1 && e.Alt)
    {
        //do something
    }
}
like image 115
Ravindra Bagale Avatar answered Dec 11 '22 08:12

Ravindra Bagale