13 references to BackgroundColorProperty
Microsoft.Maui.Controls (13)
BoxView\BoxView.cs (1)
58 if (propertyName == BackgroundColorProperty.PropertyName ||
Button\Button.cs (1)
445 bool IBorderElement.IsBackgroundColorSet() => IsSet(BackgroundColorProperty);
CheckBox\CheckBox.cs (1)
73 bool IBorderElement.IsBackgroundColorSet() => IsSet(BackgroundColorProperty);
Frame\Frame.cs (1)
79 bool IBorderElement.IsBackgroundColorSet() => IsSet(BackgroundColorProperty);
ImageButton\ImageButton.cs (1)
239 bool IBorderElement.IsBackgroundColorSet() => IsSet(BackgroundColorProperty);
Properties\AssemblyInfo.cs (1)
84[assembly: StyleProperty("background-color", typeof(VisualElement), nameof(VisualElement.BackgroundColorProperty))]
RadioButton\RadioButton.cs (2)
282 bool IBorderElement.IsBackgroundColorSet() => IsSet(BackgroundColorProperty); 555 contentPresenter.SetBinding(BackgroundColorProperty, static (RadioButton radio) => radio.BackgroundColor, BindingMode.OneWay, source: RelativeBindingSource.TemplatedParent);
Shell\BaseShellItem.cs (2)
403 Property = VisualElement.BackgroundColorProperty, 410 Property = VisualElement.BackgroundColorProperty,
TitleBar\TitleBar.cs (1)
370 BackgroundColorProperty,
VisualElement\VisualElement.cs (2)
554 get { return (Color)GetValue(BackgroundColorProperty); } 555 set { SetValue(BackgroundColorProperty, value); }