HubSection背景图像不会显示在设计器 - Windows应用商店中

时间:2014-04-10 03:43:27

标签: windows-store-apps

我不知道该怎么做,我正确设置了图像,当我在本地机器上运行调试时,图像显示在应用程序中,但在设计器中它是空白的。

        <HubSection Width="780" Margin="0,0,80,0">
            <HubSection.Background>
                <ImageBrush ImageSource="Assets/Backgrounds/backGround.jpg" Stretch="UniformToFill" />
            </HubSection.Background>
        </HubSection>

1 个答案:

答案 0 :(得分:1)

尝试在“assets / backgrounds / background.jpg”前添加正斜杠'/'或'ms-appx:///'

 <HubSection Width="780" Margin="0,0,80,0">
    <HubSection.Background>
        <ImageBrush ImageSource="/Assets/Backgrounds/backGround.jpg" Stretch="UniformToFill" />
    </HubSection.Background>
 </HubSection>



<ImageBrush ImageSource="ms-appx:///Assets/Backgrounds/backGround.jpg" Stretch="UniformToFill" />