6 references to DisabledColorProperty
Microsoft.Maui.Controls (6)
Properties\AssemblyInfo.cs (1)
171
[assembly: StyleProperty("-maui-shell-disabled", typeof(Element), nameof(Shell.
DisabledColorProperty
), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (4)
387
/// Defines the disabled color for the tab bar. If the property is unset, the <see cref = "
DisabledColorProperty
" /> value is used.
469
public static Color GetDisabledColor(BindableObject obj) => (Color)obj.GetValue(
DisabledColorProperty
);
476
public static void SetDisabledColor(BindableObject obj, Color value) => obj.SetValue(
DisabledColorProperty
, value);
517
/// If the property is unset, the <see cref = "
DisabledColorProperty
" /> value is used.
Shell\ShellAppearance.cs (1)
16
Shell.
DisabledColorProperty
,