예제 #1
0
 public PointerCancelInteraction(InputDevice sourceDevice)
     : base(sourceDevice)
 {
 }
예제 #2
0
 public PointerUpInteraction(InputDevice sourceDevice, MouseButton button)
     : base(sourceDevice)
 {
     this.button = button;
 }
예제 #3
0
 public PointerUpInteraction(InputDevice sourceDevice, MouseButton button, PointerEventProperties properties)
     : base(sourceDevice)
 {
     this.button = button;
 }
예제 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PauseInteraction"/> class.
 /// </summary>
 /// <param name="sourceDevice">The input device on which to execute the pause.</param>
 public PauseInteraction(InputDevice sourceDevice)
     : this(sourceDevice, TimeSpan.Zero)
 {
 }