gpt4 book ai didi

c# - Windows 8 中的动态磁贴是如何制作的?

转载 作者:IT王子 更新时间:2023-10-29 03:47:28 27 4
gpt4 key购买 nike

我搜索了示例、开发者网站、入门和增强 bla bla bla 页面。

即使在 Google 上使用一些搜索查询,我也无法在 Windows 8 中找到有关动态磁贴的任何信息。

如何在 Windows 8 中创建动态磁贴?可以使用哪些语言? C#? XAML?

最佳答案

终于弄明白了,这些动态磁贴正在使用磁贴通知如其他人所述

以下是使用模板更新现有默认磁贴所需的最少代码:

  1. 你必须加载 template并对其进行调整,或者生成您自己的 XML 代码。查看tile schema ...

    var tileXml = Notifications.TileUpdateManager.getTemplateContent(template); 
  2. 您需要创建一个通知,这显然是对磁贴的更新。

    var notification = new Notifications.TileNotification(tileXml); 
  3. 您需要创建一个更新程序,它将为您提供通过磁贴进行通知的方法。

    var upd = Notifications.TileUpdateManager.createTileUpdaterForApplication();
  4. 如果您拥有所有这些,您可以向客户端发送更新。

    upd.update(notification); 

关于c# - Windows 8 中的动态磁贴是如何制作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7442760/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com