File: IGestureController.cs
Web Access
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls)
#nullable disable
using System.Collections.Generic;
using Microsoft.Maui.Graphics;
 
namespace Microsoft.Maui.Controls.Internals
{
	public interface IGestureController
	{
		IList<GestureElement> GetChildElements(Point point);
 
		IList<IGestureRecognizer> CompositeGestureRecognizers { get; }
	}
}