4 references to TabBarBackgroundColorProperty
Microsoft.Maui.Controls (4)
Properties\AssemblyInfo.cs (1)
168[assembly: StyleProperty("-maui-shell-tabbar-background", typeof(Element), nameof(Shell.TabBarBackgroundColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (2)
496 public static Color GetTabBarBackgroundColor(BindableObject obj) => (Color)obj.GetValue(TabBarBackgroundColorProperty); 504 public static void SetTabBarBackgroundColor(BindableObject obj, Color value) => obj.SetValue(TabBarBackgroundColorProperty, value);
Shell\ShellAppearance.cs (1)
18 Shell.TabBarBackgroundColorProperty,