1 implementation of ISearchBar
Microsoft.Maui.Controls (1)
SearchBar\SearchBar.cs (1)
13
public partial class SearchBar : InputView, ITextAlignmentElement, ISearchBarController, IElementConfiguration<SearchBar>, ICommandElement,
ISearchBar
40 references to ISearchBar
Microsoft.Maui (39)
Handlers\SearchBar\ISearchBarHandler.cs (1)
23
new
ISearchBar
VirtualView { get; }
Handlers\SearchBar\SearchBarHandler.cs (18)
18
public static IPropertyMapper<
ISearchBar
, ISearchBarHandler> Mapper = new PropertyMapper<
ISearchBar
, ISearchBarHandler>(ViewHandler.ViewMapper)
23
[nameof(
ISearchBar
.Background)] = MapBackground,
24
[nameof(
ISearchBar
.CharacterSpacing)] = MapCharacterSpacing,
25
[nameof(
ISearchBar
.Font)] = MapFont,
28
[nameof(
ISearchBar
.IsReadOnly)] = MapIsReadOnly,
29
[nameof(
ISearchBar
.IsTextPredictionEnabled)] = MapIsTextPredictionEnabled,
30
[nameof(
ISearchBar
.IsSpellCheckEnabled)] = MapIsSpellCheckEnabled,
31
[nameof(
ISearchBar
.MaxLength)] = MapMaxLength,
32
[nameof(
ISearchBar
.Placeholder)] = MapPlaceholder,
33
[nameof(
ISearchBar
.PlaceholderColor)] = MapPlaceholderColor,
34
[nameof(
ISearchBar
.Text)] = MapText,
35
[nameof(
ISearchBar
.TextColor)] = MapTextColor,
36
[nameof(
ISearchBar
.CancelButtonColor)] = MapCancelButtonColor,
37
[nameof(
ISearchBar
.SearchIconColor)] = MapSearchIconColor,
38
[nameof(
ISearchBar
.Keyboard)] = MapKeyboard
41
public static CommandMapper<
ISearchBar
, ISearchBarHandler> CommandMapper = new(ViewCommandMapper)
62
ISearchBar
ISearchBarHandler.VirtualView => VirtualView;
Handlers\SearchBar\SearchBarHandler.Standard.cs (20)
5
public partial class SearchBarHandler : ViewHandler<
ISearchBar
, object>
11
public static void MapBackground(ISearchBarHandler handler,
ISearchBar
searchBar) { }
12
public static void MapIsEnabled(ISearchBarHandler handler,
ISearchBar
searchBar) { }
13
public static void MapText(IViewHandler handler,
ISearchBar
searchBar) { }
14
public static void MapPlaceholder(IViewHandler handler,
ISearchBar
searchBar) { }
15
public static void MapPlaceholderColor(IViewHandler handler,
ISearchBar
searchBar) { }
16
public static void MapFont(IViewHandler handler,
ISearchBar
searchBar) { }
17
public static void MapHorizontalTextAlignment(IViewHandler handler,
ISearchBar
searchBar) { }
18
public static void MapVerticalTextAlignment(IViewHandler handler,
ISearchBar
searchBar) { }
19
public static void MapCharacterSpacing(IViewHandler handler,
ISearchBar
searchBar) { }
20
public static void MapTextColor(IViewHandler handler,
ISearchBar
searchBar) { }
21
public static void MapCancelButtonColor(IViewHandler handler,
ISearchBar
searchBar) { }
22
internal static void MapSearchIconColor(IViewHandler handler,
ISearchBar
searchBar) { }
28
/// <param name="searchBar"> The associated <see cref="
ISearchBar
"/> instance.</param>
29
public static void MapIsTextPredictionEnabled(IViewHandler handler,
ISearchBar
searchBar) { }
35
/// <param name="searchBar"> The associated <see cref="
ISearchBar
"/> instance.</param>
36
public static void MapIsSpellCheckEnabled(IViewHandler handler,
ISearchBar
searchBar) { }
37
public static void MapMaxLength(IViewHandler handler,
ISearchBar
searchBar) { }
38
public static void MapIsReadOnly(IViewHandler handler,
ISearchBar
searchBar) { }
39
public static void MapKeyboard(IViewHandler handler,
ISearchBar
searchBar) { }
Microsoft.Maui.Controls (1)
SearchBar\SearchBar.cs (1)
163
void
ISearchBar
.SearchButtonPressed()