2 instantiations of TouchPoint
PresentationCore (2)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
48
return new
TouchPoint
(this, position, rectBounds, _lastAction);
111
TouchPoint touchPoint = new
TouchPoint
(this, position, rectBounds, _lastAction);
11 references to TouchPoint
PresentationCore (11)
System\Windows\Input\Stylus\Common\StylusTouchDeviceBase.cs (2)
42
public override
TouchPoint
GetTouchPoint(IInputElement relativeTo)
111
TouchPoint
touchPoint = new TouchPoint(this, position, rectBounds, _lastAction);
System\Windows\Input\TouchDevice.cs (3)
139
public abstract
TouchPoint
GetTouchPoint(IInputElement relativeTo);
782
TouchPoint
touchPoint = GetTouchPoint(null);
1155
internal static
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchEventArgs.cs (1)
30
public
TouchPoint
GetTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchFrameEventArgs.cs (1)
48
public
TouchPoint
GetPrimaryTouchPoint(IInputElement relativeTo)
System\Windows\Input\TouchPoint.cs (3)
13
public class TouchPoint : IEquatable<
TouchPoint
>
100
bool IEquatable<
TouchPoint
>.Equals(
TouchPoint
other)
System\Windows\Input\TouchPointCollection.cs (1)
15
public class TouchPointCollection : Collection<
TouchPoint
>