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