5 references to ForegroundColorProperty
Microsoft.Maui.Controls (5)
Properties\AssemblyInfo.cs (1)
167
[assembly: StyleProperty("-maui-shell-foreground", typeof(Element), nameof(Shell.
ForegroundColorProperty
), PropertyOwnerType = typeof(Shell))]
Shell\Shell.cs (3)
481
public static Color GetForegroundColor(BindableObject obj) => (Color)obj.GetValue(
ForegroundColorProperty
);
485
/// If the property is unset, the <see cref = "
ForegroundColorProperty
" /> value is used.
489
public static void SetForegroundColor(BindableObject obj, Color value) => obj.SetValue(
ForegroundColorProperty
, value);
Shell\ShellAppearance.cs (1)
17
Shell.
ForegroundColorProperty
,