3 references to GetAsyncKeyState
UIAutomationClient (3)
MS\Internal\Automation\HwndProxyElementProvider.cs (3)
2026
bool fShiftDown = ( UnsafeNativeMethods.
GetAsyncKeyState
( UnsafeNativeMethods.VK_SHIFT ) & unchecked((int)0x80000000) ) != 0;
2027
bool fAltDown = ( UnsafeNativeMethods.
GetAsyncKeyState
( UnsafeNativeMethods.VK_MENU ) & unchecked((int)0x80000000) ) != 0;
2028
bool fCtrlDown = ( UnsafeNativeMethods.
GetAsyncKeyState
( UnsafeNativeMethods.VK_CONTROL ) & unchecked((int)0x80000000) ) != 0;