starting by saying I'm a newbie on C#, I would like to know how to manage on a TextBox, events like the CTRL + A, or CTRL + S, or CTRL + some digit.
TextBox has the method KeyDown, and I think I should use this, but I don't understand how to understand when a user presses first CTRL, then presses one random digit (still with pressed CTRL).
Thank you in advance.
On the
KeyDown Method
(orKeyUp
or any other one dealing withKeyEventArgs
) you can write: