Xaml 如何更改windows phone 7中进度指示器的颜色

Xaml 如何更改windows phone 7中进度指示器的颜色,xaml,windows-phone-7,progress-bar,Xaml,Windows Phone 7,Progress Bar,我想更改进度指示器的颜色。默认颜色为红色。如果我想把颜色改成蓝色,我就必须这么做。我找不到指示器颜色的任何属性。有可能改变颜色吗 <Grid Background="#7F000000" x:Name="ProgressGrid" Visibility="{Binding Path=IsVisible}"> <TextBlock HorizontalAlignment="Center" Margin="10,500,0,0" Height="100" T

我想更改进度指示器的颜色。默认颜色为红色。如果我想把颜色改成蓝色,我就必须这么做。我找不到指示器颜色的任何属性。有可能改变颜色吗

<Grid Background="#7F000000" x:Name="ProgressGrid" Visibility="{Binding Path=IsVisible}">
            <TextBlock HorizontalAlignment="Center" Margin="10,500,0,0" Height="100" Text="{Binding Path=AppResources.Label558, Source={StaticResource LocalizedStrings}}" FontSize="28" FontWeight="Bold" />
            <ProgressBar IsIndeterminate="True" Width="383" Margin="0,500,0,0" />
        </Grid>


请告诉我任何想法。

是的,这是可能的。更改进度条的
前台
属性以实现以下目标:

<ProgressBar Foreground="Blue" />

另一件您遗漏的事情是,默认情况下,进度条颜色设置为phone accent theme。您看到它是红色的,因为此时手机主题设置为红色。并且不建议更改默认行为,除非您有充分的理由这样做