更改进度指示器Windows Phone Silverlight 8.1中的点的颜色

时间:2015-04-24 14:53:52

标签: c# silverlight windows-phone-8.1 foreground progress-indicator

是否可以更改Windows Phone 8.1 Silverlight应用程序ProgressIndicator中的点的颜色?我已将Foreground的{​​{1}}设为白色,并且颜色为白色但点仍为蓝色。

ProgressIndicator

我注意到Facebook ProgressIndicator中有白点,所以有可能吗?

1 个答案:

答案 0 :(得分:0)

您可以通过设置以下资源来更改Indeterminate进度条的前景色:

<x:String x:Key="ProgressBarIndeterminateForegroundThemeBrush">#EF9200</x:String>

这将更改应用的所有进度条的前景色。 但是如果您使用系统的进度指示器,这将无效:

StatusBarProgressIndicator progressbar = StatusBar.GetForCurrentView().ProgressIndicator;
        progressbar.ShowAsync();