26 writes to PropertyOwnerType
Microsoft.Maui.Controls (20)
Properties\AssemblyInfo.cs (20)
116
[assembly: StyleProperty("padding-left", typeof(IPaddingElement), nameof(PaddingElement.PaddingLeftProperty),
PropertyOwnerType
= typeof(PaddingElement))]
117
[assembly: StyleProperty("padding-top", typeof(IPaddingElement), nameof(PaddingElement.PaddingTopProperty),
PropertyOwnerType
= typeof(PaddingElement))]
118
[assembly: StyleProperty("padding-right", typeof(IPaddingElement), nameof(PaddingElement.PaddingRightProperty),
PropertyOwnerType
= typeof(PaddingElement))]
119
[assembly: StyleProperty("padding-bottom", typeof(IPaddingElement), nameof(PaddingElement.PaddingBottomProperty),
PropertyOwnerType
= typeof(PaddingElement))]
134
[assembly: StyleProperty("align-self", typeof(VisualElement), nameof(FlexLayout.AlignSelfProperty),
PropertyOwnerType
= typeof(FlexLayout))]
136
[assembly: StyleProperty("flex-basis", typeof(VisualElement), nameof(FlexLayout.BasisProperty),
PropertyOwnerType
= typeof(FlexLayout))]
137
[assembly: StyleProperty("flex-grow", typeof(VisualElement), nameof(FlexLayout.GrowProperty),
PropertyOwnerType
= typeof(FlexLayout))]
138
[assembly: StyleProperty("flex-shrink", typeof(VisualElement), nameof(FlexLayout.ShrinkProperty),
PropertyOwnerType
= typeof(FlexLayout))]
139
[assembly: StyleProperty("flex-wrap", typeof(VisualElement), nameof(FlexLayout.WrapProperty),
PropertyOwnerType
= typeof(FlexLayout))]
141
[assembly: StyleProperty("order", typeof(VisualElement), nameof(FlexLayout.OrderProperty),
PropertyOwnerType
= typeof(FlexLayout))]
165
[assembly: StyleProperty("-maui-shell-background", typeof(Element), nameof(Shell.BackgroundColorProperty),
PropertyOwnerType
= typeof(Shell))]
166
[assembly: StyleProperty("-maui-shell-disabled", typeof(Element), nameof(Shell.DisabledColorProperty),
PropertyOwnerType
= typeof(Shell))]
167
[assembly: StyleProperty("-maui-shell-foreground", typeof(Element), nameof(Shell.ForegroundColorProperty),
PropertyOwnerType
= typeof(Shell))]
168
[assembly: StyleProperty("-maui-shell-tabbar-background", typeof(Element), nameof(Shell.TabBarBackgroundColorProperty),
PropertyOwnerType
= typeof(Shell))]
169
[assembly: StyleProperty("-maui-shell-tabbar-disabled", typeof(Element), nameof(Shell.TabBarDisabledColorProperty),
PropertyOwnerType
= typeof(Shell))]
170
[assembly: StyleProperty("-maui-shell-tabbar-foreground", typeof(Element), nameof(Shell.TabBarForegroundColorProperty),
PropertyOwnerType
= typeof(Shell))]
171
[assembly: StyleProperty("-maui-shell-tabbar-title", typeof(Element), nameof(Shell.TabBarTitleColorProperty),
PropertyOwnerType
= typeof(Shell))]
172
[assembly: StyleProperty("-maui-shell-tabbar-unselected", typeof(Element), nameof(Shell.TabBarUnselectedColorProperty),
PropertyOwnerType
= typeof(Shell))]
173
[assembly: StyleProperty("-maui-shell-title", typeof(Element), nameof(Shell.TitleColorProperty),
PropertyOwnerType
= typeof(Shell))]
174
[assembly: StyleProperty("-maui-shell-unselected", typeof(Element), nameof(Shell.UnselectedColorProperty),
PropertyOwnerType
= typeof(Shell))]
Microsoft.Maui.Controls.Compatibility (6)
Properties\AssemblyInfo.cs (6)
21
[assembly: StyleProperty("align-self", typeof(VisualElement), nameof(CFlexLayout.AlignSelfProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
23
[assembly: StyleProperty("flex-basis", typeof(VisualElement), nameof(CFlexLayout.BasisProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
24
[assembly: StyleProperty("flex-grow", typeof(VisualElement), nameof(CFlexLayout.GrowProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
25
[assembly: StyleProperty("flex-shrink", typeof(VisualElement), nameof(CFlexLayout.ShrinkProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
26
[assembly: StyleProperty("flex-wrap", typeof(VisualElement), nameof(CFlexLayout.WrapProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
28
[assembly: StyleProperty("order", typeof(VisualElement), nameof(CFlexLayout.OrderProperty),
PropertyOwnerType
= typeof(CFlexLayout))]
1 reference to PropertyOwnerType
Microsoft.Maui.Controls (1)
VisualElement\VisualElement_StyleSheet.cs (1)
39
var propertyOwnerType = styleAttribute.
PropertyOwnerType
?? GetType();