Despite me working with C# (Windows Forms) for years, I\'m having a brain fail moment, and can\'t for the life of me figure out how to catch a user typing Ctrl +
Go ahead and use the KeyDown event, but in that event check for both Ctrl and C, like so:
if (e.Control && e.KeyCode == Keys.C) { //... e.SuppressKeyPress = true; }
Also, to prevent processing the keystroke by the underlying TextBox, set the SuppressKeyPress property to true as shown.