зеркало из https://github.com/DeGsoft/maui-linux.git
13 строки
321 B
C#
13 строки
321 B
C#
namespace Xamarin.Forms
|
|
{
|
|
public interface IPanGestureController
|
|
{
|
|
void SendPan(Element sender, double totalX, double totalY, int gestureId);
|
|
|
|
void SendPanCanceled(Element sender, int gestureId);
|
|
|
|
void SendPanCompleted(Element sender, int gestureId);
|
|
|
|
void SendPanStarted(Element sender, int gestureId);
|
|
}
|
|
} |