UWP。将出现在 Microsoft Store 中的应用名称

UWP. The name of the app that will appear in the Microsoft Store

我需要设置将出现在 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 元素还是 Applications -> Application -> VisualElements -> DisplayName 属性

因为在msdn上写了package.appxmanifest的描述,第一个和第二个是用户友好的名字。

商店中的名称是 Properties -> DisplayName,Application -> VisualElements -> DisplayName 实际上是出现在 uwp 应用程序标题栏上的应用程序名称,也是在开始菜单中。

将您的项目与 开发中心 上保留的应用程序名称相关联会自动为您填写名称。

保留应用名称 https://docs.microsoft.com/en-us/windows/uwp/publish/create-your-app-by-reserving-a-name 正在将应用与商店关联

Rightclick project -> Store -> Associate app with store -> pick one of your already reserved app names or reserve a new one.