maui-linux/Xamarin.Forms.Core/IPinchGestureController.cs

15 строки
333 B
C#

namespace Xamarin.Forms
{
public interface IPinchGestureController
{
bool IsPinching { get; set; }
void SendPinch(Element sender, double scale, Point currentScalePoint);
void SendPinchCanceled(Element sender);
void SendPinchEnded(Element sender);
void SendPinchStarted(Element sender, Point intialScalePoint);
}
}