0

我无法在 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"/>

两者都在设计视图中显示背景图像,但不在模拟器或设备中。有什么帮助吗?(这是用于主应用程序背景)。

4

1 回答 1

2

请确保您的图像的属性“构建操作”是内容。

于 2013-05-31T14:08:27.960 回答