14 references to BackgroundProperty
Microsoft.Maui.Controls (13)
BoxView\BoxView.cs (1)
61 propertyName == BackgroundProperty.PropertyName ||
Button\Button.cs (1)
445 bool IBorderElement.IsBackgroundSet() => IsSet(BackgroundProperty);
CheckBox\CheckBox.cs (1)
72 bool IBorderElement.IsBackgroundSet() => IsSet(BackgroundProperty);
Compatibility\Handlers\FlyoutPage\iOS\PhoneFlyoutPageRenderer.cs (1)
363 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName)
Compatibility\Handlers\iOS\FrameRenderer.cs (1)
17 [VisualElement.BackgroundProperty.PropertyName] = (h, _) => h.SetupLayer(),
Compatibility\Handlers\TableView\iOS\TableViewRenderer.cs (1)
103 else if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName || e.PropertyName == VisualElement.BackgroundProperty.PropertyName)
Frame\Frame.cs (1)
81 bool IBorderElement.IsBackgroundSet() => IsSet(BackgroundProperty);
ImageButton\ImageButton.cs (1)
240 bool IBorderElement.IsBackgroundSet() => IsSet(BackgroundProperty);
Properties\AssemblyInfo.cs (1)
85[assembly: StyleProperty("background", typeof(VisualElement), nameof(VisualElement.BackgroundProperty))]
RadioButton\RadioButton.cs (1)
281 bool IBorderElement.IsBackgroundSet() => IsSet(BackgroundProperty);
TitleBar\TitleBar.cs (1)
361 BackgroundProperty,
VisualElement\VisualElement.cs (2)
561 get { return (Brush)GetValue(BackgroundProperty); } 562 set { SetValue(BackgroundProperty, value); }
Microsoft.Maui.Controls.Compatibility (1)
Tizen\Renderers\VisualElementRenderer.cs (1)
46 RegisterPropertyHandler(VisualElement.BackgroundProperty, UpdateBackground);