37 references to Report
PresentationCore (37)
System\Windows\Input\Command\CommandDevice.cs (3)
53
if (input.
Report
.Type == InputType.Command)
55
RawAppCommandInputReport rawAppCommandInputReport = input.
Report
as RawAppCommandInputReport;
84
RawAppCommandInputReport rawAppCommandInputReport = inputReportEventArgs.
Report
as RawAppCommandInputReport;
System\Windows\Input\InputManager.cs (1)
857
InputReportEventArgs inputReport = new InputReportEventArgs(previewInputReport.Device, previewInputReport.
Report
)
System\Windows\Input\KeyboardDevice.cs (2)
972
if(input.
Report
.Type == InputType.Keyboard && input.RoutedEvent == Event)
974
keyboardInput = input.
Report
as RawKeyboardInputReport;
System\Windows\Input\MouseDevice.cs (6)
1154
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1156
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)inputReportEventArgs.
Report
;
1389
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1391
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
1896
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1898
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
System\Windows\Input\Stylus\Pointer\PointerLogic.cs (8)
169
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
171
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
203
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
299
if (input.
Report
.Type == InputType.Mouse)
303
else if (input.
Report
.Type == InputType.Stylus)
305
RawStylusInputReport rsir = (RawStylusInputReport)input.
Report
;
352
switch (input.
Report
.Type)
356
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
System\Windows\Input\Stylus\Pointer\PointerStylusPlugInManager.cs (2)
515
if (input.
Report
.Type != InputType.Mouse)
518
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\Stylus\Wisp\WispLogic.cs (13)
485
if (input.
Report
.Type == InputType.Mouse)
494
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
874
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)input.
Report
;
884
else if (input.
Report
.Type == InputType.Stylus)
886
RawStylusInputReport stylusInputReport = (RawStylusInputReport)input.
Report
;
990
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Stylus)
992
RawStylusInputReport rawStylusInputReport = (RawStylusInputReport)inputReportEventArgs.
Report
;
1179
if (!input.Handled && input.
Report
.Type == InputType.Stylus)
1181
RawStylusInputReport report = (RawStylusInputReport)input.
Report
;
1687
inputReportArgs.
Report
.Type == InputType.Mouse &&
1690
touchDevice.StylusDevice.As<WispStylusDevice>().PlayBackCachedDownInputReport(inputReportArgs.
Report
.Timestamp);
1832
if (input.
Report
.Type != InputType.Mouse)
1835
RawMouseInputReport mouseInputReport = (RawMouseInputReport)input.
Report
;
System\Windows\Input\TextCompositionManager.cs (2)
612
if(input.
Report
.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
615
textInput = (RawTextInputReport)input.
Report
;