
December 22, 2009 22:32 by
Brian Keating |
Recently I used PInvoke to check if the SHIFT key was pressed while i was doing a drag operation......
what I should have done then and have done now is
if((Keyboard.Modifiers & ModifierKeys.Shift) != ModifierKeys.None)
Trace.WriteLine("Shift is pressed");
About Brian Keating
Professional Software Developer, .NET / C++ / Java View all posts by
Brian Keating →