国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Windows > 正文

Windows 8技巧:Windows 8 中的Toast Tile Badge通知的使用方法

2019-11-28 03:38:18
字體:
來源:轉載
供稿:網友

  在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";</p><p> ITileSquareImage wideImageContent = TileContentFactory.CreateTileSquareImage();
wideImageContent.Image.Src = "http://news.mycar168.com/uploadfile/2011/1030/20111030040816628.jpg";
tile.SquareContent = wideImageContent;
TileUpdateManager.CreateTileUpdaterForApplication().Update(tile.CreateNotification());
}</p><p> 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());
}</p><p> private void BadgeImage_Click(object sender, RoutedEventArgs e)
{
//Badge狀態圖片通知
BadgeGlyphNotificationContent badge = new BadgeGlyphNotificationContent(GlyphValue.Paused);
BadgeUpdateManager.CreateBadgeUpdaterForApplication().Update(badge.CreateNotification());
}</p><p> private void BadgeClear_Click(object sender, RoutedEventArgs e)
{
//清楚Badge通知
BadgeUpdateManager.CreateBadgeUpdaterForApplication().Clear();
}

圖片效果見圖片右下角:

 

Xaml:

復制代碼
代碼如下:

<Grid Background="{StaticResource ApplicationPageBackgroundThemeBrush}">
<Button Content="Toast通知" HorizontalAlignment="Left" Name="ToastNotice"
Margin="250,172,0,0" VerticalAlignment="Top" Click="ToastNotice_Click"/>
<Button Content="Tile 通知" HorizontalAlignment="Left" Name="TileNotice"
Margin="394,172,0,0" VerticalAlignment="Top" Click="TileNotice_Click"/>
<Button Content="清除Tile通知" HorizontalAlignment="Left" Name="ClearTile"
Margin="559,172,0,0" VerticalAlignment="Top" Click="ClearTile_Click" />
<Button Content="Badge數字" HorizontalAlignment="Left" Name="BadgeNotice"
Margin="250,270,0,0" VerticalAlignment="Top" Click="BadgeNotice_Click"/>
<Button Content="Badge圖片" HorizontalAlignment="Left" Name="BadgeImage"
Margin="394,270,0,0" VerticalAlignment="Top" Click="BadgeImage_Click" />
<Button Content="Badge清除" HorizontalAlignment="Left" x:Name="BadgeClear"
Margin="559,270,0,0" VerticalAlignment="Top" Click="BadgeClear_Click" />
</Grid>
  

  最后如需源碼請點擊 Win8Notice_jb51net.rar 下載。 

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 宁陵县| 法库县| 仁化县| 马边| 江源县| 长寿区| 梨树县| 汉阴县| 夏河县| 诏安县| 乌拉特后旗| 莱西市| 乌审旗| 泰州市| 拜城县| 江永县| 平谷区| 平陆县| 娱乐| 富锦市| 岱山县| 故城县| 东乌| 边坝县| 昌吉市| 瑞丽市| 南澳县| 新丰县| 合肥市| 石台县| 黄梅县| 东兴市| 凤山县| 惠水县| 平昌县| 额济纳旗| 贵阳市| 鹤峰县| 镇赉县| 龙川县| 宁远县|