5 references to SelectedTabColor
Microsoft.Maui.Controls (3)
TabbedPage\TabbedPage.cs (2)
23
/// <summary>Bindable property for <see cref="
SelectedTabColor
"/>.</summary>
24
public static readonly BindableProperty SelectedTabColorProperty = BindableProperty.Create(nameof(
SelectedTabColor
), typeof(Color), typeof(TabbedPage), default(Color));
TabbedPage\TabbedPage.Mapper.cs (1)
17
TabbedViewHandler.Mapper.ReplaceMapping<TabbedPage, ITabbedViewHandler>(nameof(
SelectedTabColor
), MapSelectedTabColor);
Microsoft.Maui.Controls.Compatibility (2)
iOS\Renderers\TabbedRenderer.cs (2)
487
if (Tabbed.IsSet(TabbedPage.SelectedTabColorProperty) && Tabbed.
SelectedTabColor
!= null)
489
TabBar.TintColor = Tabbed.
SelectedTabColor
.ToPlatform();