Windows 10 20H2 开始菜单中的灰色背景

Gray background in start menu on Windows 10 20H2

在 Windows 10 到 20H1,我的 UWP 应用“RECOIL”在开始菜单中看起来像这样:

在 Windows 10 20H2 而不是我选择的蓝绿色背景,而是浅灰色背景:

如何去除浅灰色背景,就像 Access 和 Acrobat Reader DC 一样?

Package.appxmanifest:

<uap:VisualElements
    DisplayName="RECOIL"
    Square150x150Logo="Assets\Square150x150Logo.png"
    Square44x44Logo="Assets\Square44x44Logo.png"
    Description="Shows images in native formats of vintage computers"
    BackgroundColor="#006374">
    <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" />
    <uap:SplashScreen Image="Assets\SplashScreen.png" />
</uap:VisualElements>

资产是全透明背景上的白色“R”字母。

How do I get rid of the light gray background, like Access and Acrobat Reader DC do?

应用程序图标的浅灰色背景是电镀的。如果您想使用未镀的资产,请参考Unplated assets文档。

By default, Windows uses a target-based asset on top of a colored backplate by default. If you want, you can provide a target-based unplated asset. "Unplated" means the asset will be displayed on a transparent background. Keep in mind that these assets will appear over a variety of background colors.

基于目标的资产的尺寸建议,在 100% 比例下:未镀层 24px 图标,默认镀层 16px 图标在 24px 板上。请转到 Visual Assets-> App icon -> set unplated assets for your app

我们建议您使用资产生成器生成应用资产。更多请参考App logo document.