4

我的应用程序中有很多页面,我决定在 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 属性。有什么问题?

4

1 回答 1

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>

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

于 2011-11-26T17:02:07.343 回答