4 references to TabBarUnselectedColorProperty
Microsoft.Maui.Controls (4)
Properties\AssemblyInfo.cs (1)
172[assembly: StyleProperty("-maui-shell-tabbar-unselected", typeof(Element), nameof(Shell.TabBarUnselectedColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (2)
556 public static Color GetTabBarUnselectedColor(BindableObject obj) => (Color)obj.GetValue(TabBarUnselectedColorProperty); 564 public static void SetTabBarUnselectedColor(BindableObject obj, Color value) => obj.SetValue(TabBarUnselectedColorProperty, value);
Shell\ShellAppearance.cs (1)
22 Shell.TabBarUnselectedColorProperty,