How can I remove live tile title in a Windows Phone 8.1 application?

时间秒杀一切 提交于 2019-12-12 20:12:45

问题


I'm building a wide live tile using TileWide310x150Image template in a BackgroundTask, which should show only a wide image, no text or else.

This is the template I'm using:

<tile>
 <visual>
  <binding template="TileWideImage">
   <image id="1" src="image1.png" />
  </binding>  
 </visual>
</tile>

However, application's name is still there and I can't find anything to remove it in the Manifest as it was possible on Windows Phone 7 and 8.

Is there any way to remove it?


回答1:


In the tile notification XML, specify "none" as the value for the branding attribute. Using this attribute, one can specify whether the tile shows the app logo, the name, or nothing.




回答2:


Uncheck the checkboxes in Visual Assets tab in the package.appxmanifest file, that removed the title for me. However it didn't do that for the TileSquare150x150IconWithBadge template for some odd reason.



来源:https://stackoverflow.com/questions/23128091/how-can-i-remove-live-tile-title-in-a-windows-phone-8-1-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!