File: Shell\ISearchHandlerController.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; using System.Collections.Generic; namespace Microsoft.Maui.Controls { public interface ISearchHandlerController { event EventHandler<ListProxyChangedEventArgs> ListProxyChanged; IReadOnlyList<object> ListProxy { get; } void ClearPlaceholderClicked(); void ItemSelected(object obj); void QueryConfirmed(); } } |