22 references to LeftAlt
PresentationCore (7)
Core\CSharp\System\Windows\Input\Command\KeyGesture.cs (1)
227case Key.LeftAlt:
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (1)
234if(IsKeyDown_private(Key.LeftAlt) || IsKeyDown_private(Key.RightAlt))
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (3)
623if(keyArgs.RealKey == Key.LeftAlt || keyArgs.RealKey == Key.RightAlt) 857if(key == Key.LeftAlt || key == Key.RightAlt) 884if (!Keyboard.IsKeyDown(Key.LeftAlt) && !Keyboard.IsKeyDown(Key.RightAlt))
Core\CSharp\System\Windows\Input\TextServicesManager.cs (1)
282if (Keyboard.IsKeyDown(Key.LeftAlt) ||
Core\CSharp\System\Windows\Input\Win32KeyboardDevice.cs (1)
84case Key.LeftAlt:
PresentationFramework (5)
src\Framework\MS\Internal\Documents\DocumentGrid.cs (1)
1290bool altKeyDown = Keyboard.IsKeyDown(Key.LeftAlt) || Keyboard.IsKeyDown(Key.RightAlt);
src\Framework\System\Windows\Controls\Menu.cs (1)
352if (!(Keyboard.IsKeyDown(Key.LeftAlt) || Keyboard.IsKeyDown(Key.RightAlt)))
src\Framework\System\Windows\Controls\Primitives\MenuBase.cs (1)
473if ((e.SystemKey == Key.LeftAlt) ||
src\Framework\System\Windows\Input\KeyboardNavigation.cs (2)
1316case Key.LeftAlt: 3350return (key == Key.LeftAlt || key == Key.RightAlt || key == Key.F10);
UIAutomationClient (2)
MS\Internal\Automation\HwndProxyElementProvider.cs (2)
1622Input.SendKeyboardInput(System.Windows.Input.Key.LeftAlt, true); 1623Input.SendKeyboardInput(System.Windows.Input.Key.LeftAlt, false);
UIAutomationClientsideProviders (4)
MS\Internal\AutomationProxies\Misc.cs (2)
117Input.SendKeyboardInput(Key.LeftAlt, true); 118Input.SendKeyboardInput(Key.LeftAlt, false);
MS\Internal\AutomationProxies\WindowsMenu.cs (2)
2447Input.SendKeyboardInput (Key.LeftAlt, true); 2448Input.SendKeyboardInput (Key.LeftAlt, false);
WindowsBase (4)
Base\System\Windows\Input\KeyConverter.cs (2)
198case "ALT": keyFound = Key.LeftAlt; break; 199case "LEFTALT": keyFound = Key.LeftAlt; break;
Base\System\Windows\Input\KeyInterop.cs (2)
498key = Key.LeftAlt; 1190case Key.LeftAlt: