5 references to BackgroundColorProperty
Microsoft.Maui.Controls (5)
Properties\AssemblyInfo.cs (1)
165[assembly: StyleProperty("-maui-shell-background", typeof(Element), nameof(Shell.BackgroundColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (3)
378 /// Defines the background color for the tab bar. If the property is unset, the <see cref = "BackgroundColorProperty" /> value is used. 452 public static Color GetBackgroundColor(BindableObject obj) => (Color)obj.GetValue(BackgroundColorProperty); 460 public static void SetBackgroundColor(BindableObject obj, Color value) => obj.SetValue(BackgroundColorProperty, value);
Shell\ShellAppearance.cs (1)
15 Shell.BackgroundColorProperty,