我需要设置将出现在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>
是属性-> DisplayName 元素还是应用程序->应用程序-> VisualElements-> DisplayName属性?
因为在package.appxmanifest的说明中写了msdn,所以第一个和第二个就像用户的友好名称。
答案 0 :(得分:1)
商店中的名称是属性-> DisplayName ,应用程序-> VisualElements-> DisplayName实际上是显示在uwp应用程序标题栏中以及开始菜单中的应用程序名称。
将您的项目与开发中心上的保留应用名称相关联,将自动为您填充名称。
保留应用名称 https://docs.microsoft.com/en-us/windows/uwp/publish/create-your-app-by-reserving-a-name 将应用与商店关联
右键单击项目->商店->将应用程序与商店关联->选择一个已经保留的应用程序名称或保留一个新名称。