2 instantiations of TouchPoint
PresentationCore (2)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
50
return new
TouchPoint
(this, position, rectBounds, _lastAction);
113
TouchPoint touchPoint = new
TouchPoint
(this, position, rectBounds, _lastAction);
11 references to TouchPoint
PresentationCore (11)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
44
public override
TouchPoint
GetTouchPoint(IInputElement relativeTo)
113
TouchPoint
touchPoint = new TouchPoint(this, position, rectBounds, _lastAction);
System\Windows\Input\TouchDevice.cs (3)
151
public abstract
TouchPoint
GetTouchPoint(IInputElement relativeTo);
794
TouchPoint
touchPoint = GetTouchPoint(null);
1167
internal static
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchEventArgs.cs (1)
35
public
TouchPoint
GetTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchFrameEventArgs.cs (1)
52
public
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchPoint.cs (3)
17
public class TouchPoint : IEquatable<
TouchPoint
>
104
bool IEquatable<
TouchPoint
>.Equals(
TouchPoint
other)
System\Windows\Input\TouchPointCollection.cs (1)
16
public class TouchPointCollection : Collection<
TouchPoint
>