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)
976
if(input.
Report
.Type == InputType.Keyboard && input.RoutedEvent == Event)
978
keyboardInput = input.
Report
as RawKeyboardInputReport;
System\Windows\Input\MouseDevice.cs (6)
1155
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1157
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)inputReportEventArgs.
Report
;
1390
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1392
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
1900
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1902
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
;
300
if (input.
Report
.Type == InputType.Mouse)
304
else if (input.
Report
.Type == InputType.Stylus)
306
RawStylusInputReport rsir = (RawStylusInputReport)input.
Report
;
353
switch (input.
Report
.Type)
357
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)
486
if (input.
Report
.Type == InputType.Mouse)
495
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
875
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
885
else if (input.
Report
.Type == InputType.Stylus)
887
RawStylusInputReport stylusInputReport = (RawStylusInputReport)input.
Report
;
991
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
993
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
1180
if (!input.Handled && input.
Report
.Type == InputType.Stylus)
1182
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
1688
inputReportArgs.
Report
.Type == InputType.Mouse &&
1691
touchDevice.StylusDevice.As<WispStylusDevice>().PlayBackCachedDownInputReport(inputReportArgs.
Report
.Timestamp);
1833
if (input.
Report
.Type != InputType.Mouse)
1836
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\TextCompositionManager.cs (2)
603
if(input.
Report
.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
606
textInput = (RawTextInputReport)input.
Report
;