10 references to TouchPoints
Microsoft.Maui.Controls (6)
PanGestureRecognizer.cs (2)
14
/// <summary>Bindable property for <see cref="
TouchPoints
"/>.</summary>
15
public static readonly BindableProperty TouchPointsProperty = BindableProperty.Create(nameof(
TouchPoints
), typeof(int), typeof(PanGestureRecognizer), 1);
Platform\GestureManager\GesturePlatformManager.iOS.cs (4)
332
var uiRecognizer = CreatePanRecognizer(panRecognizer.
TouchPoints
, r =>
343
if (r.NumberOfTouches != ((PanGestureRecognizer)panGestureRecognizer).
TouchPoints
)
348
if (r.NumberOfTouches != ((PanGestureRecognizer)panGestureRecognizer).
TouchPoints
)
364
if (r.NumberOfTouches != ((PanGestureRecognizer)panGestureRecognizer).
TouchPoints
)
Microsoft.Maui.Controls.Compatibility (4)
iOS\EventTracker.cs (4)
386
var uiRecognizer = CreatePanRecognizer(panRecognizer.
TouchPoints
, r =>
398
if (r.NumberOfTouches != panRecognizer.
TouchPoints
)
405
if (r.NumberOfTouches != panRecognizer.
TouchPoints
)
423
if (r.NumberOfTouches != panRecognizer.
TouchPoints
)