8 references to ColorProperty
Microsoft.Maui.Controls (8)
ActivityIndicator\ActivityIndicator.cs (3)
16 public static readonly BindableProperty ColorProperty = ColorElement.ColorProperty; 29 get { return (Color)GetValue(ColorElement.ColorProperty); } 30 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)
27 public static readonly BindableProperty ColorProperty = ColorElement.ColorProperty;
Properties\AssemblyInfo.cs (1)
95[assembly: StyleProperty("color", typeof(IColorElement), nameof(ColorElement.ColorProperty), Inherited = true)]