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