我无法在Windows Phone枢轴网格中显示背景图像。这是代码:
<!--LayoutRoot is the root grid where all page content is placed-->
<Grid x:Name="LayoutRoot">
<Grid.Background>
<ImageBrush ImageSource="/BackgroundImage.jpg"/>
</Grid.Background>
我用'/'尝试过,没有例如。
<ImageBrush ImageSource="BackgroundImage.jpg"/>
和
<ImageBrush ImageSource="/BackgroundImage.jpg"/>
都在设计视图中显示背景图像,但在模拟器或设备中不显示。有帮助吗? (这是主要的应用程序背景)。
答案 0 :(得分:2)
请确保您图片的“Build Action”属性为Content。