对于“颜色”按钮,我使用
<Button HorizontalOptions ="StartAndExpand" Image="@+id/table_icon" BackgroundColor="Red"/>
但我的应用程序非常慢。有没有其他方法来改变按钮颜色。 Style =“”我不能使用,或者不存在于xaml中。 ??
答案 0 :(得分:-1)
在C#代码中尝试使用
button.BackgroundColor = UIColor.Yellow;
将button
更改为按钮的参考。