37 references to Report
PresentationCore (37)
System\Windows\Input\Command\CommandDevice.cs (3)
54
if (input.
Report
.Type == InputType.Command)
56
RawAppCommandInputReport rawAppCommandInputReport = input.
Report
as RawAppCommandInputReport;
85
RawAppCommandInputReport rawAppCommandInputReport = inputReportEventArgs.
Report
as RawAppCommandInputReport;
System\Windows\Input\InputManager.cs (1)
858
InputReportEventArgs inputReport = new InputReportEventArgs(previewInputReport.Device, previewInputReport.
Report
);
System\Windows\Input\KeyboardDevice.cs (2)
967
if(input.
Report
.Type == InputType.Keyboard && input.RoutedEvent == Event)
969
keyboardInput = input.
Report
as RawKeyboardInputReport;
System\Windows\Input\MouseDevice.cs (6)
1152
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1154
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)inputReportEventArgs.
Report
;
1375
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1377
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
1877
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1879
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (8)
170
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
172
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
204
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
298
if (input.
Report
.Type == InputType.Mouse)
302
else if (input.
Report
.Type == InputType.Stylus)
304
RawStylusInputReport rsir = (RawStylusInputReport)input.
Report
;
351
switch (input.
Report
.Type)
355
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (2)
516
if (input.
Report
.Type != InputType.Mouse)
519
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (13)
481
if (input.
Report
.Type == InputType.Mouse)
490
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
866
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
876
else if (input.
Report
.Type == InputType.Stylus)
878
RawStylusInputReport stylusInputReport = (RawStylusInputReport)input.
Report
;
982
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
984
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
1171
if (!input.Handled && input.
Report
.Type == InputType.Stylus)
1173
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
1677
inputReportArgs.
Report
.Type == InputType.Mouse &&
1680
touchDevice.StylusDevice.As<WispStylusDevice>().PlayBackCachedDownInputReport(inputReportArgs.
Report
.Timestamp);
1820
if (input.
Report
.Type != InputType.Mouse)
1823
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\TextCompositionManager.cs (2)
591
if(input.
Report
.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
594
textInput = (RawTextInputReport)input.
Report
;