8 references to ColorProperty
Microsoft.Maui.Controls (8)
ActivityIndicator\ActivityIndicator.cs (3)
14
public static readonly BindableProperty ColorProperty = ColorElement.
ColorProperty
;
27
get { return (Color)GetValue(ColorElement.
ColorProperty
); }
28
set { SetValue(ColorElement.
ColorProperty
, value); }
BoxView\BoxView.cs (3)
13
public static readonly BindableProperty ColorProperty = ColorElement.
ColorProperty
;
29
get => (Color)GetValue(ColorElement.
ColorProperty
);
30
set => SetValue(ColorElement.
ColorProperty
, value);
CheckBox\CheckBox.cs (1)
25
public static readonly BindableProperty ColorProperty = ColorElement.
ColorProperty
;
Properties\AssemblyInfo.cs (1)
95
[assembly: StyleProperty("color", typeof(IColorElement), nameof(ColorElement.
ColorProperty
), Inherited = true)]