зеркало из https://github.com/DeGsoft/maui-linux.git
15 строки
333 B
C#
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);
|
|
}
|
|
} |