2 instantiations of TouchPoint
PresentationCore (2)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
47
return new
TouchPoint
(this, position, rectBounds, _lastAction);
110
TouchPoint touchPoint = new
TouchPoint
(this, position, rectBounds, _lastAction);
11 references to TouchPoint
PresentationCore (11)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
41
public override
TouchPoint
GetTouchPoint(IInputElement relativeTo)
110
TouchPoint
touchPoint = new TouchPoint(this, position, rectBounds, _lastAction);
System\Windows\Input\TouchDevice.cs (3)
138
public abstract
TouchPoint
GetTouchPoint(IInputElement relativeTo);
781
TouchPoint
touchPoint = GetTouchPoint(null);
1153
internal static
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchEventArgs.cs (1)
29
public
TouchPoint
GetTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchFrameEventArgs.cs (1)
47
public
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchPoint.cs (3)
12
public class TouchPoint : IEquatable<
TouchPoint
>
99
bool IEquatable<
TouchPoint
>.Equals(
TouchPoint
other)
System\Windows\Input\TouchPointCollection.cs (1)
14
public class TouchPointCollection : Collection<
TouchPoint
>