我无法在 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>
我用'/'试过了,没有eg
<ImageBrush ImageSource="BackgroundImage.jpg"/>
与
<ImageBrush ImageSource="/BackgroundImage.jpg"/>
两者都在设计视图中显示背景图像,但不在模拟器或设备中。有什么帮助吗?(这是用于主应用程序背景)。