I have a KeyEvent called Bind that captures two key presses (Ctrl + Ins) I want to return this as a string but when I do using (Bind.KeyData.ToString()) the string is backwards and instead of ( Control, Insert ) it returns ( Insert, Control ). How do I fix this?
private KeyEventArgs Bind = new KeyEventArgs(Keys.Control | Keys.Insert);
And to call I use
Bind.KeyData.ToString()
Construct you result string manually: