4 references to TabBarDisabledColorProperty
Microsoft.Maui.Controls (4)
Properties\AssemblyInfo.cs (1)
169[assembly: StyleProperty("-maui-shell-tabbar-disabled", typeof(Element), nameof(Shell.TabBarDisabledColorProperty), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (2)
511 public static Color GetTabBarDisabledColor(BindableObject obj) => (Color)obj.GetValue(TabBarDisabledColorProperty); 519 public static void SetTabBarDisabledColor(BindableObject obj, Color value) => obj.SetValue(TabBarDisabledColorProperty, value);
Shell\ShellAppearance.cs (1)
19 Shell.TabBarDisabledColorProperty,