コード例 #1
0
ファイル: PointerRoutedEvents.cs プロジェクト: qcjxberin/MPF
 public PointerButtonRoutedEventArgs(RoutedEvent routedEvent, object originalSource, InputDevice inputDevice, ushort changedButton, PointerButtonState buttonState)
     : base(routedEvent, originalSource, inputDevice)
 {
     ChangedButton = changedButton;
     ButtonState   = buttonState;
 }
コード例 #2
0
ファイル: PointerRoutedEvents.cs プロジェクト: qcjxberin/MPF
 public PointerRoutedEventArgs(RoutedEvent routedEvent, object originalSource, InputDevice inputDevice) : base(routedEvent, originalSource)
 {
     InputDevice = inputDevice;
 }