Show app name on Tile update(在磁贴更新上显示应用名称)
问题描述
我正在开发一个简单的应用程序,它会不时更新其磁贴.
I am developing a simple app which updates its tile time to time.
我需要我的应用始终在磁贴上显示其名称.因此,我在我的应用清单中将 Show Name 设置为 All Logos.
I need my app to show its name on the tile all the time. Therefore, I set the Show Name to All Logos in my app manifest.
问题是,当我的应用更新其磁贴(使用 TileSquareBlock 磁贴模板)时,应用名称将被应用徽标替换.
The problem is that when my app updates its tile (using TileSquareBlock tile template) the app name would be replaced by app Logo.
如何在更新后将我的应用名称保留在磁贴上?
How can I keep my app name on tile after updating?
推荐答案
在磁贴通知 XML 中,将name"指定为 品牌属性.使用此属性,可以指定磁贴是否显示应用程序徽标、名称或不显示任何内容.
In the tile notification XML, specify "name" as the value for the branding attribute. Using this attribute, one can specify whether the tile shows the app logo, the name, or nothing.
这篇关于在磁贴更新上显示应用名称的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在磁贴更新上显示应用名称
基础教程推荐
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- WPF 模态进度窗口 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
