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