为itempage.xaml设置背景图片

时间:2014-08-03 13:57:45

标签: c# xaml windows-phone-8 windows-phone-8.1

我正在开发windows phone 8.1 app,当我为hubpage.xaml设置背景图片时,它不会影响itempage.xaml。任何人都可以帮我为应用程序中的所有其他页面设置相同的背景吗?无论如何,我正在使用集线器模板。

1 个答案:

答案 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>