我正在使用Microsoft.Toolkit.Uwp.Notifications
类库。
我想添加多个 PeekImage
,就像 Microsoft商店
var tileContent = new TileContent
{
Visual = new TileVisual
{
TileWide = new TileBinding()
{
Content = new TileBindingContentAdaptive()
{
PeekImage = new TilePeekImage
{
Source = "Assets/512x512bb.jpg"
},
Children =
{
new AdaptiveText
{
Text = "Jennifer Parker",
HintWrap = true
}
}
}
}
}
};
var tileNotif = new TileNotification(tileContent.GetXml());
TileUpdateManager.CreateTileUpdaterForApplication().Update(tileNotif);
答案 0 :(得分:1)
商店磁贴使用通知队列通过窥视图像实现多个磁贴通知。请参阅此文章learn how to use the notification queue。
只需在发送的每个通知上使用不同的偷看图像。