2 implementations of IBarElement
Microsoft.Maui.Controls (2)
NavigationPage\NavigationPage.cs (1)
15 public partial class NavigationPage : Page, IPageContainer<Page>, IBarElement, IElementConfiguration<NavigationPage>, IStackNavigationView, IToolbarElement
TabbedPage\TabbedPage.cs (1)
9 public partial class TabbedPage : MultiPage<Page>, IBarElement, IElementConfiguration<TabbedPage>, ITabbedView
11 references to IBarElement
Microsoft.Maui.Controls (11)
BarElement.cs (9)
8 /// <summary>Bindable property for <see cref="IBarElement.BarBackgroundColor"/>.</summary> 10 BindableProperty.Create(nameof(IBarElement.BarBackgroundColor), typeof(Color), typeof(IBarElement), default(Color)); 12 /// <summary>Bindable property for <see cref="IBarElement.BarBackground"/>.</summary> 14 BindableProperty.Create(nameof(IBarElement.BarBackground), typeof(Brush), typeof(IBarElement), default(Brush)); 16 /// <summary>Bindable property for <see cref="IBarElement.BarTextColor"/>.</summary> 18 BindableProperty.Create(nameof(IBarElement.BarTextColor), typeof(Color), typeof(IBarElement), default(Color));
Properties\AssemblyInfo.cs (2)
148[assembly: StyleProperty("-maui-bar-background-color", typeof(IBarElement), nameof(BarElement.BarBackgroundColorProperty))] 149[assembly: StyleProperty("-maui-bar-text-color", typeof(IBarElement), nameof(BarElement.BarTextColorProperty))]