Handle the KeyDown Event when ALT+KEY is Pressed

c#, keyboard, user-input, winforms

Solution

This is the code that finally Works

if (e.KeyCode >= Keys.A && e.KeyCode <= Keys.Z &&  e.Alt){
     //Do SomeThing
}

Problem

How do you handle a `KeyDown` event when the ALT key is pressed simultaneously with another key in .NET?

Original source