Hardcodet.NotifyIcon.Wpf
这个是使用系统托盘图标来完成通知的推送的,前半段请参照我的其他文章(WPF实现系统托盘)
推送通知的例子:
App.TaskbarIcon.ShowBalloonTip("UIToy Notification", "Window Rect is null.", Hardcodet.Wpf.TaskbarNotification.Balloo...
在WinForm当中,我们可以使用非常轻松地实现系统托盘,在.NET Core的WPF当中,System.Windows.Form并不能作为命名空间引用,本文将讲述如何在WPF中实现系统托盘,以及如何将窗口最小化到系统托盘。
安装NuGet包
搜索Hardcodet.NotifyIcon.Wpf并安装:
编写ViewModel
public class NotifyIconViewMode...