I work with C#, Windows Forms I need to implement in the KeyDow event of the form the following combination of key Alt + C I have tried but I have not been able to achieve it.
if (e.KeyCode == e.Alt && Keys.C )
It is not the way, how can I solve it?
Note: don't forget to set the form's KeyPreview parameter to true, for this to work.