Is there another way of getting the Keys from a Shortcut besides
sc is of type System.Windows.Forms.Shortcut
System.Windows.Forms.Shortcut
var k = (Keys)sc; >
var k = (Keys)sc;
I have solved this using the ABL .NET bridge by comparing the result of the System.Windows.Forms.Shortcut's value GetHashValue() to the e:KeyData:GetHGashValue() in an KeyDown event handler.