是否可以更改ProgressIndicator
Windows Phone 8.1 Silverlight 应用程序中点的颜色?我已经将Foreground
我的设置ProgressIndicator
为白色,它是白色的,但点仍然是蓝色的。
我注意到 Facebook 的 中有白点,ProgressIndicator
这可能吗?
是否可以更改ProgressIndicator
Windows Phone 8.1 Silverlight 应用程序中点的颜色?我已经将Foreground
我的设置ProgressIndicator
为白色,它是白色的,但点仍然是蓝色的。
我注意到 Facebook 的 中有白点,ProgressIndicator
这可能吗?
您可以通过设置以下资源来更改 Indeterminate 进度条的前景色:
<x:String x:Key="ProgressBarIndeterminateForegroundThemeBrush">#EF9200</x:String>
这将更改应用程序所有进度条的前景色。但是,如果您使用系统的进度指示器,这将不起作用:
StatusBarProgressIndicator progressbar = StatusBar.GetForCurrentView().ProgressIndicator;
progressbar.ShowAsync();