48 references to InputType
PresentationCore (46)
System\Windows\Input\Command\CommandDevice.cs (3)
61if (input.Report.Type == InputType.Command) 280private IInputElement GetSourceFromDevice(InputType device) 282if (device == InputType.Mouse)
System\Windows\Input\InputReport.cs (11)
42protected InputReport(PresentationSource inputSource, InputType type, InputMode mode, int timestamp) 68public InputType Type {get {return _type;}} 100private void Validate_InputType( InputType type ) 104case InputType.Keyboard: 105case InputType.Mouse: 106case InputType.Stylus: 107case InputType.Hid: 108case InputType.Text: 109case InputType.Command: 112throw new System.ComponentModel.InvalidEnumArgumentException("type", (int)type, typeof(InputType)); 117private InputType _type;
System\Windows\Input\KeyboardDevice.cs (1)
1010if(input.Report.Type == InputType.Keyboard && input.RoutedEvent == Event)
System\Windows\Input\MouseDevice.cs (3)
1184if (!inputReportEventArgs.Handled && inputReportEventArgs.Report.Type == InputType.Mouse) 1407if (!inputReportEventArgs.Handled && inputReportEventArgs.Report.Type == InputType.Mouse) 1909if (!inputReportEventArgs.Handled && inputReportEventArgs.Report.Type == InputType.Mouse)
System\Windows\Input\RawAppCommandInputReport.cs (4)
54InputType device, 55InputType inputType) : base(inputSource, inputType, mode, timestamp) 69internal InputType Device 78private InputType _device;
System\Windows\Input\RawKeyboardInputReport.cs (1)
63IntPtr extraInformation) : base(inputSource, InputType.Keyboard, mode, timestamp)
System\Windows\Input\RawMouseInputReport.cs (1)
61IntPtr extraInformation) : base(inputSource, InputType.Mouse, mode, timestamp)
System\Windows\Input\RawTextInputReport.cs (1)
52char characterCode) : base(inputSource, InputType.Text, mode, timestamp)
System\Windows\Input\RawUIStateInputReport.cs (1)
42RawUIStateTargets targets) : base(inputSource, InputType.Keyboard, mode, timestamp)
System\Windows\Input\Stylus\Common\RawStylusInputReport.cs (1)
243: base(inputSource, InputType.Stylus, mode, timestamp)
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (4)
187if (!inputReportEventArgs.Handled && inputReportEventArgs.Report.Type == InputType.Stylus) 315if (input.Report.Type == InputType.Mouse) 319else if (input.Report.Type == InputType.Stylus) 370case InputType.Stylus:
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (1)
528if (input.Report.Type != InputType.Mouse)
System\Windows\Input\Stylus\Wisp\WispLogic.cs (6)
490if (input.Report.Type == InputType.Mouse) 885else if (input.Report.Type == InputType.Stylus) 991if (!inputReportEventArgs.Handled && inputReportEventArgs.Report.Type == InputType.Stylus) 1180if (!input.Handled && input.Report.Type == InputType.Stylus) 1686inputReportArgs.Report.Type == InputType.Mouse && 1829if (input.Report.Type != InputType.Mouse)
System\Windows\Input\TextCompositionManager.cs (1)
607if(input.Report.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
System\Windows\InterOp\HwndAppCommandInputProvider.cs (7)
64InputType.Command); 89private static InputType GetDevice(IntPtr lParam) 91InputType inputType = InputType.Hid; 101inputType = InputType.Mouse; 105inputType = InputType.Keyboard; 112inputType=InputType.Hid;
PresentationFramework (2)
System\Windows\Controls\PopupControlService.cs (1)
52if (report.Report.Type == InputType.Mouse)
System\Windows\Input\KeyboardNavigation.cs (1)
3422if (input.Report.Type == InputType.Keyboard && input.RoutedEvent == Event)