3 references to GetAsyncKeyState
UIAutomationClientSideProviders (3)
MS\Internal\AutomationProxies\Misc.cs (3)
1549
bool fShiftDown = (UnsafeNativeMethods.
GetAsyncKeyState
(UnsafeNativeMethods.VK_SHIFT) & unchecked((int)0x80000000)) != 0;
1550
bool fAltDown = (UnsafeNativeMethods.
GetAsyncKeyState
(UnsafeNativeMethods.VK_MENU) & unchecked((int)0x80000000)) != 0;
1551
bool fCtrlDown = (UnsafeNativeMethods.
GetAsyncKeyState
(UnsafeNativeMethods.VK_CONTROL) & unchecked((int)0x80000000)) != 0;