I want to know how do I detect if the 'alt' key is being pressed like when typing the '@' symbol you press the alt key and 'à'and also I cannot use _KeyDown event because I'm making a class.
Ok so i have just tryed this:
if (Control.ModifierKeys.ToString() == "Alt")
{
MessageBox.Show("ALT");
}
but this only works with the left alt key for some reason..