我正在尝试使用图块模板(显示图像并切换显示文本的图块)
http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx#TileSquarePeekImageAndText04
问题是:我将这个 XML 放在哪里以及如何在 XAML 中调用它?
我正在尝试使用图块模板(显示图像并切换显示文本的图块)
http://msdn.microsoft.com/en-us/library/windows/apps/hh761491.aspx#TileSquarePeekImageAndText04
问题是:我将这个 XML 放在哪里以及如何在 XAML 中调用它?
您不在 XAML 中调用它,而是将它提供给TileUpdater实例,正如您从下面的TileUpdateManager文档中看到的那样。这个简单的场景处理本地通知(但您也可以利用预定的、定期的和推送通知)。
function sendTileTextNotification() {
var Notifications = Windows.UI.Notifications;
// Get an XML DOM version of a specific template by using getTemplateContent.
var tileXml = Notifications.TileUpdateManager.getTemplateContent(Notifications.TileTemplateType.tileWideText03);
// You will need to look at the template documentation to know how many text fields a particular template has.
// Get the text attribute for this template and fill it in.
var tileAttributes = tileXml.getElementsByTagName("text");
tileAttributes[0].appendChild(tileXml.createTextNode("Hello World!"));
// Create the notification from the XML.
var tileNotification = new Notifications.TileNotification(tileXml);
// Send the notification to the calling app's tile.
Notifications.TileUpdateManager.createTileUpdaterForApplication().update(tileNotification);
}