14 references to Report
PresentationCore (14)
Core\CSharp\System\Windows\Input\Command\CommandDevice.cs (3)
78
if (input.
Report
.Type == InputType.Command)
80
RawAppCommandInputReport rawAppCommandInputReport = input.
Report
as RawAppCommandInputReport;
114
RawAppCommandInputReport rawAppCommandInputReport = inputReportEventArgs.
Report
as RawAppCommandInputReport;
Core\CSharp\System\Windows\Input\InputManager.cs (1)
1075
InputReportEventArgs inputReport = new InputReportEventArgs(previewInputReport.Device, previewInputReport.
Report
);
Core\CSharp\System\Windows\Input\KeyboardDevice.cs (2)
1076
if(input.
Report
.Type == InputType.Keyboard && input.RoutedEvent == Event)
1078
keyboardInput = input.
Report
as RawKeyboardInputReport;
Core\CSharp\System\Windows\Input\MouseDevice.cs (6)
1271
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1273
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport)inputReportEventArgs.
Report
;
1490
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1492
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
1995
if (!inputReportEventArgs.Handled && inputReportEventArgs.
Report
.Type == InputType.Mouse)
1997
RawMouseInputReport rawMouseInputReport = (RawMouseInputReport) inputReportEventArgs.
Report
;
Core\CSharp\System\Windows\Input\TextCompositionManager.cs (2)
741
if(input.
Report
.Type == InputType.Text && input.RoutedEvent == InputManager.InputReportEvent)
744
textInput = (RawTextInputReport)input.
Report
;