Windows Phone 8.1 Silverlight 应用程序上的磁贴标题

Tile title on Windows Phone 8.1 Silverlight app

我将我的应用程序从 WP8.0 迁移到 WP8.1 Silverlight。现在磁贴将不再显示 title/app 名称。

Package.appxmanifest(瓷砖部分)目前看起来如下

  <m3:VisualElements DisplayName="Time Stamp" Square150x150Logo="Assets\Startscreen-Medium-Tile.png" Square44x44Logo="Assets\Applicaton-Icon.png" Description="Time Stamp work time tracker" ForegroundText="light" BackgroundColor="transparent">
    <m3:DefaultTile ShortName="Time Stamp" Square71x71Logo="Assets\Startscreen-Small-Tile.png" Wide310x150Logo="Assets\Startscreen-Wide-Tile.png">
      <m3:ShowNameOnTiles>
        <m3:ShowOn Tile="square150x150Logo"></m3:ShowOn>
        <m3:ShowOn Tile="wide310x150Logo"></m3:ShowOn>
      </m3:ShowNameOnTiles>
    </m3:DefaultTile>
    <m3:SplashScreen Image="Assets\SplashScreen\SplashScreenImage.scale-240.jpg" />
  </m3:VisualElements>

我已经搜索文档一段时间了,但无法弄清楚缺少什么。引起我注意的是以下注释,它属于 DefaultTile (https://msdn.microsoft.com/en-us/library/windows/apps/dn391672.aspx)[=15= 的 ShortName 属性的描述]

Note As of Windows 8.1, this property is ignored and the display name 
declared in the manifest is used in its place.

虽然它提到 Windows 而不是 Windows Phone 我想知道它也指的是什么清单。也许这里的文档不是 100% 正确。

有时会发生这种情况,在问完问题后我马上就知道是什么导致了这个问题。似乎该项目必须完全重建才能使图块标题正确显示。难怪我在文档中找不到任何关于此的信息,因为只要清单发生变化,就应该清楚地做到这一点。