0
是否可以在Windows 8.1中更改活動指示器的顏色?ActivityIndicator顏色屬性在Windows 8.1中不起作用
Color屬性似乎在Xamarin Forms 2.0.0.0 stable中被忽略。
是否可以在Windows 8.1中更改活動指示器的顏色?ActivityIndicator顏色屬性在Windows 8.1中不起作用
Color屬性似乎在Xamarin Forms 2.0.0.0 stable中被忽略。
看着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>
感謝。 –