是否可以在Windows 8.1中更改活动指示器的颜色?
在Xamarin Forms 2.0.0.0 stable中,Color属性似乎被忽略了。
答案 0 :(得分:0)
查看Forms source code,本机控件的Foreground属性用于设置颜色。在线搜索,结果只是doesn't work on Windows 8.1。
我提交了pull request来修复此问题,但同时最简单的方法是覆盖Windows 8.1 App.xaml文件中的画笔:
<Application.Resources>
<ResourceDictionary>
<SolidColorBrush x:Key="ProgressBarIndeterminateForegroundThemeBrush" Color="Yellow"/>
</ResourceDictionary>
</Application.Resources>