我需要设置将出现在 Microsoft Store 中的应用程序的名称。我应该在 package.appxmanifest 中定义哪个元素或属性?
<?xml version="1.0" encoding="utf-8"?>
<Package xmlns="http://schemas.microsoft.com/appx/2010/manifest">
<Identity Name=""
Version=""
Publisher="" />
<Properties>
<DisplayName>The Name of the app in the Store</DisplayName>
<PublisherDisplayName></PublisherDisplayName>
<Logo></Logo>
</Properties>
<Applications>
<Application Id="" StartPage="">
<VisualElements DisplayName="The Name of the app in the Store" Description=""
Logo="" SmallLogo=""
ForegroundText="" BackgroundColor="">
<SplashScreen Image="" />
</VisualElements>
</Application>
</Applications>
</Package>
是Properties -> DisplayName element 还是Applications -> Application -> VisualElements -> DisplayName 属性?
因为在msdn上 package.appxmanifest 的描述中写了第一个和第二个就像是用户的友好名称。