UWP:资产在调试期间可见,但在商店发布中不可见

时间:2018-09-19 16:57:11

标签: xaml uwp visual-studio-2017 windows-10 windows-store

在我的应用程序中,有一个带有应用程序图标的关于部分:

<Border Background="Gray" Margin="0,0,12,0" Width="136" Height="136">
    <Image Source="ms-appx:///Assets/StoreLogo.scale-400.png" Width="68"/>
</Border>

在调试过程中,其行为符合预期:
debug with asset visible

但是将其上传到商店并与其他客户端下载后,它看起来像这样:
result after store upload - asset not visible, just background

Visual Studio中该特定文件的生成设置应该正确,但是您可以检查:
asset properties: Build Action = Content; Copy to Output Directory = Copy always

我如何也可以在商店发布中显示资产?

1 个答案:

答案 0 :(得分:0)

<Image Source="ms-appx:///Assets/StoreLogo.png" Width="68"/>

仅使用正常的StoreLogo名称,不带比例扩展名,该比例扩展名是商店用来确定商店中不同屏幕尺寸的最佳图像。