1 implementation of IPinchGestureController
Microsoft.Maui.Controls (1)
PinchGestureRecognizer.cs (1)
10
public sealed class PinchGestureRecognizer : GestureRecognizer,
IPinchGestureController
9 references to IPinchGestureController
Microsoft.Maui.Controls (9)
PinchGestureRecognizer.cs (9)
12
bool
IPinchGestureController
.IsPinching { get; set; }
14
void
IPinchGestureController
.SendPinch(Element sender, double delta, Point currentScalePoint)
22
(this as
IPinchGestureController
).IsPinching = true;
25
void
IPinchGestureController
.SendPinchCanceled(Element sender)
33
(this as
IPinchGestureController
).IsPinching = false;
36
void
IPinchGestureController
.SendPinchEnded(Element sender)
44
(this as
IPinchGestureController
).IsPinching = false;
47
void
IPinchGestureController
.SendPinchStarted(Element sender, Point initialScalePoint)
55
(this as
IPinchGestureController
).IsPinching = true;