如何在Windows Phone uwp的Windows窗格中显示应用程序名称

时间:2016-09-12 13:48:40

标签: windows xaml uwp

如何在图块中显示应用程序名称。   如图所示,我正在开发屏幕中的最后一个应用程序。为此我需要显示应用程序的名称。   在PackageManifest文件中,我添加了所有图像以在主屏幕中显示图像。  对此的任何帮助高度赞赏。 谢谢。 enter image description here

<Applications>
    <Application Id="App" Executable="$targetnametoken$.exe" EntryPoint="MMRevamp_2016.App">
      <uap:VisualElements DisplayName="Maalaimalar" Square150x150Logo="Assets\Square150x150Logo.png" Square44x44Logo="Assets\Square44x44Logo.png" Description="MMRevamp_2016" BackgroundColor="transparent">
        <uap:LockScreen Notification="badge" BadgeLogo="Images\BadgeLogo.png" />
        <uap:DefaultTile Wide310x150Logo="Assets\Wide310x150Logo.png" Square71x71Logo="Images\Square142x142Logo.png" Square310x310Logo="Images\Square310x310Logo.png">
          <uap:ShowNameOnTiles>
            <uap:ShowOn Tile="square310x310Logo" />
          </uap:ShowNameOnTiles>
        </uap:DefaultTile>
      </uap:VisualElements>
 </Applications>

2 个答案:

答案 0 :(得分:2)

如果您打开Package.appxmanifest并转到Visual Assets,您会看到带有复选框的显示名称。选中资产旁边的相应框。

请参阅屏幕截图,了解示例 enter image description here

答案 1 :(得分:0)

如果您正在使用XML,您也可以将品牌属性设置为“名称”。例如:

<tile>
  <visual>
    <binding template="TileMedium" branding="name">
    </binding>
  </visual>
</tile>