2016-10-20 61 views

回答

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> 
+0

感謝。 –

相關問題