首页 > 代码库 > 在wpf中使用winrt的Toast弹框效果

在wpf中使用winrt的Toast弹框效果

源码地址:https://code.msdn.microsoft.com/windowsdesktop/Sending-toast-notifications-71e230a2/sourcecode?fileId=51047&pathId=611218636

步骤如下:

1,引用C:\Program Files (x86)\Windows Kits\8.0\References\CommonConfiguration\Neutral\Windows.winmd,这是win8系统自带的。

2,引用Windows7 API代码包(Microsoft.WindowsAPICodePack.dll和Microsoft.WindowsAPICodePack.Shell.dll)。

3,为了显示Toast通知,首先需要一个快捷方式到你的开始菜单上的应用程序。此外,快捷都必须有一个AppUserModeId你可以在代码中设置。

4,调用快捷方式。

参考:http://www.itwriting.com/blog/6217-notifications-in-windows-8-how-to-display-new-style-toast-from-a-desktop-app.html

效果图如下:

1

在wpf中使用winrt的Toast弹框效果