腾讯视频/爱奇艺/优酷/外卖 充值4折起
在windows 8中有三种通知的方式及时提醒用户,它们分别是toast,tile,badge
toast:是在应用程序中及时弹出的提醒通知。
tile:是磁贴通知,用于metro界面中的应用程序图标上进行图片和文字通知。
badge:是在磁贴小贴士通知,用于metro界面中的应用程序图标右下角提示当前有多少新消息或者当前应用程序状态,如(playing paused newmessage)等。
准备工作: 首先:引用notificationsextensions.winmd库,这是对各种通知简化访问的封装。
其次:打开package.appxmanifest重新设置各种徽标。
最后:打开package.appxmanifest,设置“支持toast通知”为“是”。
toast:
复制代码
代码如下:
private void toastnotice_click(object sender, routedeventargs e)
{
//toast通知文字以及图片设置
itoastimageandtext01 toast = toastcontentfactory.createtoastimageandtext01();
toast.textbodywrap.text = "今日世界末日倒数10天!";
toast.image.src = "http://news.shangdu.com/301/20120512/p_5626361_0__1686841290.jpg";
toastnotificationmanager.createtoastnotifier().show(toast.createnotification());
}
效果图片:
tile:
复制代码
代码如下:
private void tilenotice_click(object sender, routedeventargs e)
{
//tile通知文字以及图片设置
itilewideimageandtext01 tile = tilecontentfactory.createtilewideimageandtext01();
tile.textcaptionwrap.text = "小资情有独钟 10款合资热销时尚车型导购";
tile.image.src = "http://news.mycar168.com/uploadfile/2011/1030/20111030040816628.jpg";
itilesquareimage wideimagecontent = tilecontentfactory.createtilesquareimage();
wideimagecontent.image.src = "http://news.mycar168.com/uploadfile/2011/1030/20111030040816628.jpg";
tile.squarecontent = wideimagecontent;
tileupdatemanager.createtileupdaterforapplication().update(tile.createnotification());
}
private void cleartile_click(object sender, routedeventargs e)
{
//清除tile通知
tileupdatemanager.createtileupdaterforapplication().clear();
}
效果图片:
badge:
复制代码
代码如下:
private void badgenotice_click(object sender, routedeventargs e)
{
//badge数字通知
badgenumericnotificationcontent badge = new badgenumericnotificationcontent(29);
badgeupdatemanager.createbadgeupdaterforapplication().update(badge.createnotification());
}
private void badgeimage_click(object sender, routedeventargs e)
{
//badge状态图片通知
badgeglyphnotificationcontent badge = new badgeglyphnotificationcontent(glyphvalue.paused);
badgeupdatemanager.createbadgeupdaterforapplication().update(badge.createnotification());
}
private void badgeclear_click(object sender, routedeventargs e)
{
//清楚badge通知
badgeupdatemanager.createbadgeupdaterforapplication().clear();
}
图片效果见图片右下角:
xaml:
复制代码
代码如下: