位置: 编程技术 - 正文
推荐整理分享Windows 8技巧:Windows 8 中的Toast Tile Badge通知的使用方法 (windows 8),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:windows8怎么使用,windows 8whql,windows 8whql,windows8使用技巧,windows 8,window八,windows 8,windows 8 1,内容如对您有帮助,希望把文章链接给更多的朋友!
在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通知文字以及图片设置 IToastImageAndText Toast = ToastContentFactory.CreateToastImageAndText(); Toast.TextBodyWrap.Text = "今日世界末日倒数天!"; Toast.Image.Src = " ToastNotificationManager.CreateToastNotifier().Show(Toast.CreateNotification()); }
效果图片:
Tile:复制代码代码如下:private void TileNotice_Click(object sender, RoutedEventArgs e) { //Tile通知文字以及图片设置 ITileWideImageAndText tile = TileContentFactory.CreateTileWideImageAndText(); tile.TextCaptionWrap.Text = "小资情有独钟 款合资热销时尚车型导购"; tile.Image.Src = " ITileSquareImage wideImageContent = TileContentFactory.CreateTileSquareImage(); wideImageContent.Image.Src = " 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(); 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=",,0,0" VerticalAlignment="Top" Click="ToastNotice_Click"/> <Button Content="Tile 通知" HorizontalAlignment="Left" Name="TileNotice" Margin=",,0,0" VerticalAlignment="Top" Click="TileNotice_Click"/> <Button Content="清除Tile通知" HorizontalAlignment="Left" Name="ClearTile" Margin=",,0,0" VerticalAlignment="Top" Click="ClearTile_Click" /> <Button Content="Badge数字" HorizontalAlignment="Left" Name="BadgeNotice" Margin=",,0,0" VerticalAlignment="Top" Click="BadgeNotice_Click"/> <Button Content="Badge图片" HorizontalAlignment="Left" Name="BadgeImage" Margin=",,0,0" VerticalAlignment="Top" Click="BadgeImage_Click" /> <Button Content="Badge清除" HorizontalAlignment="Left" x:Name="BadgeClear" Margin=",,0,0" VerticalAlignment="Top" Click="BadgeClear_Click" /> </Grid>
最后如需源码请点击 Win8Notice_gimoonet.rar 下载。
Windows 8技巧:关于windows 8的文件管理 File创建和String Stream Buffer方式读写的 在本文中我们将学习Windows8中的文件创建和多种读写方式以及设置文档库访问权限和文件类型的访问。当然我们需要做以下准备工作:首先:设置程序允
Windows 8技巧:windows 8文件 文件夹管理[文件以及文件夹操作] 在本文中我们将学习win8中的文件以及文件夹的各种操作。在本文中文件操作主要是讲述:删除文件/移动文件/复制文件/重命名文件文件夹操作分为:读
win8中文版电脑升级教程(图文) 现在去电子商场你会发现很多品牌机都已经预装了最新的Win8操作系统。在中国,市面上大多数OEM品牌机新机预装的都是Windows8中文版操作系统。查看计
标签: windows 8
本文链接地址:https://www.jiuchutong.com/biancheng/363784.html 转载请保留说明!上一篇:Windows 8技巧:Windows 8的基本变换和矩阵变换以及AppBar应用程序栏的使用 (window八)
下一篇:Windows 8技巧:关于windows 8的文件管理 File创建和String Stream Buffer方式读写的(关闭windows怎么关)
友情链接: 武汉网站建设