按钮样式(颜色)如何更改? Xamarin跨平台

时间:2015-01-21 11:36:52

标签: button xamarin styles cross-platform

对于“颜色”按钮,我使用

<Button HorizontalOptions ="StartAndExpand" Image="@+id/table_icon" BackgroundColor="Red"/>

但我的应用程序非常慢。有没有其他方法来改变按钮颜色。 Style =“”我不能使用,或者不存在于xaml中。 ??

1 个答案:

答案 0 :(得分:-1)

在C#代码中尝试使用

button.BackgroundColor = UIColor.Yellow;

button更改为按钮的参考。