我正在开发windows phone 8.1 app,当我为hubpage.xaml设置背景图片时,它不会影响itempage.xaml。任何人都可以帮我为应用程序中的所有其他页面设置相同的背景吗?无论如何,我正在使用集线器模板。
答案 0 :(得分:2)
那是因为xaml上的属性是特定于页面的。
如果您想使用相同的背景,您可以手动为每个页面分配xaml中的背景(请参阅HubPage.xaml Background
部分的Hub
属性。
或者您可以覆盖ApplicationPageBackgroundThemeBrush
并将其设置为所需的背景。
编辑App.xaml并向ResourceDictionary
添加新条目。
<ResourceDictionary x:Key="Default">
<ImageBrush x:Key="HubBackgroundImageBrush" ImageSource="Assets/HubBackground.png"/>
<ImageBrush x:Key="ApplicationPageBackgroundThemeBrush" ImageSource="Assets/HubBackground.png"/>
</ResourceDictionary>