Windows Phone应用程序栏背景颜色属性样式XamlParseException

时间:2011-11-26 12:36:11

标签: xaml windows-phone-7 application-bar

我的应用程序中有很多页面,我决定在App.Resources中创建一个全局的ApplicationBar样式:

<Style TargetType="shell:ApplicationBar">
    <Setter Property="BackgroundColor" Value="#006699" />
</Style>

但是,当我尝试启动应用时,VS给了我一个错误:

The property 'BackgroundColor' was not found in type 'Microsoft.Phone.Shell.ApplicationBar'.

这不是真的 - ApplicationBar.BackgroundColor Property。有什么问题?

1 个答案:

答案 0 :(得分:2)

我相信,ApplicationBar属性不能使用Binding或者你正在尝试的样式,因为它不是一个silverlight控件。虽然您可以将whole应用程序栏作为资源。像这样

<shell:ApplicationBar x:Key="MyAppBar" IsVisible="True" BackgroundColor="#006699">
         <shell:ApplicationBarIconButton IconUri="/Images/image.png" Text="image"  IsEnabled="True"/>  
</shell:ApplicationBar>

编辑: 或者,如果您希望更改应用程序栏颜色,则可以将其放在资源中。

<shell:ApplicationBar x:Key="MyAppBar" IsVisible="True" BackgroundColor="#006699">
</shell:ApplicationBar>

然后从代码后面添加按钮。虽然,我没有遇到过这会有所帮助的情况。