Implemented interface member:
property
CancelButtonColor
Microsoft.Maui.ISearchBar.CancelButtonColor
6 references to CancelButtonColor
Microsoft.Maui.Controls (2)
SearchBar\SearchBar.cs (2)
26 /// <summary>Bindable property for <see cref="CancelButtonColor"/>.</summary> 27 public static readonly BindableProperty CancelButtonColorProperty = BindableProperty.Create(nameof(CancelButtonColor), typeof(Color), typeof(SearchBar), default(Color));
Microsoft.Maui.Controls.Compatibility (4)
iOS\Renderers\SearchBarRenderer.cs (4)
283 if (Element.CancelButtonColor == null) 291 cancelButton.SetTitleColor(Element.CancelButtonColor.ToPlatform(), UIControlState.Normal); 292 cancelButton.SetTitleColor(Element.CancelButtonColor.ToPlatform(), UIControlState.Highlighted); 300 cancelButton.SetTitleColor(Element.CancelButtonColor.ToPlatform(), UIControlState.Disabled);