Xamarin - 如果存在BindingProperty的基类?

时间:2016-05-04 06:05:03

标签: xamarin xamarin.forms

我有疑问:

如果我有按钮和标签 - 我想用setter BackgroundColorProperty = Color.Black设置样式。我试着以这种方式给按钮:

new Setter { Property = Label.BackgroundColorProperty, Value = Color.Black }

及其工作。

所以问题 - 如果存在基类或我可以使用的方式:

new Setter { Property = BASECLASS.BackgroundColorProperty, Value = Color.Black }

1 个答案:

答案 0 :(得分:4)

每个视觉元素的基类是VisualElement

https://developer.xamarin.com/api/type/Xamarin.Forms.VisualElement/

如果您使用Resharper,它会告诉您在这种情况下可以使用基类:)

enter image description here