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

11 строки
240 B
C#

using System.Collections.Generic;
namespace Xamarin.Forms.Internals
{
public interface IGestureController
{
IList<GestureElement> GetChildElements(Point point);
IList<IGestureRecognizer> CompositeGestureRecognizers { get; }
}
}