37 references to Report
PresentationCore (37)
System\Windows\Input\Command\CommandDevice.cs (3)
61
if (input.
Report
.Type == InputType.Command)
63
RawAppCommandInputReport rawAppCommandInputReport = input.
Report
as RawAppCommandInputReport;
92
RawAppCommandInputReport rawAppCommandInputReport = inputReportEventArgs.
Report
as RawAppCommandInputReport;
System\Windows\Input\InputManager.cs (1)
866
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)
1161
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1163
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)inputReportEventArgs.
Report
;
1384
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1386
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
1886
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1888
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (8)
187
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
189
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
221
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
315
if (input.
Report
.Type == InputType.Mouse)
319
else if (input.
Report
.Type == InputType.Stylus)
321
RawStylusInputReport rsir = (RawStylusInputReport)input.
Report
;
368
switch (input.
Report
.Type)
372
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (2)
528
if (input.
Report
.Type != InputType.Mouse)
531
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (13)
490
if (input.
Report
.Type == InputType.Mouse)
499
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
;
1686
inputReportArgs.
Report
.Type == InputType.Mouse &&
1689
touchDevice.StylusDevice.As<WispStylusDevice>().PlayBackCachedDownInputReport(inputReportArgs.
Report
.Timestamp);
1829
if (input.
Report
.Type != InputType.Mouse)
1832
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\TextCompositionManager.cs (2)
607
if(input.
Report
.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
610
textInput = (RawTextInputReport)input.
Report
;