如何在tile中添加多个PeekImage?

时间:2017-12-14 10:29:14

标签: uwp

我正在使用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);

1 个答案:

答案 0 :(得分:1)

商店磁贴使用通知队列通过窥视图像实现多个磁贴通知。请参阅此文章learn how to use the notification queue

只需在发送的每个通知上使用不同的偷看图像。