6 references to UnselectedColorProperty
Microsoft.Maui.Controls (6)
Properties\AssemblyInfo.cs (1)
174[assembly: StyleProperty("-maui-shell-unselected", typeof(Element), nameof(Shell.UnselectedColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (4)
404 /// Defines the unselected color for the tab bar. If the property is unset, the <see cref = "UnselectedColorProperty" /> value is used. 418 /// Defines the unselected color for the tab bar. If the property is unset, the <see cref = "UnselectedColorProperty" /> value is used. 585 public static Color GetUnselectedColor(BindableObject obj) => (Color)obj.GetValue(UnselectedColorProperty); 592 public static void SetUnselectedColor(BindableObject obj, Color value) => obj.SetValue(UnselectedColorProperty, value);
Shell\ShellAppearance.cs (1)
24 Shell.UnselectedColorProperty