无法获取在Windows Phone枢轴网格中显示的背景图像

时间:2013-05-31 12:40:18

标签: c# xaml

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

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

1 个答案:

答案 0 :(得分:2)

请确保您图片的“Build Action”属性为Content。