在旧的WPF项目中使用交互式Toast通知

我有一个工作程序,它打开用户输入的对话框(WPF)。 现在我想要重构并使用Toast Notifications。 通知需要有按钮的能力(按是或否)。 新的Win10互动式Toast Notification看起来很完美。 我从Windows获得官方教程。 https://docs.microsoft.com/en-us/windows/uwp/controls-and-patterns/tiles-and-notifications-send-local-toast

显示Toasts工作正常,但....程序是用C#编写的Visual Studio WPF应用程序(.NET Framework)。 它不会让我重写我的App.xaml.cs中的方法,我需要:

protected override void OnActivated(IActivatedEventArgs e)
protected override async void OnBackgroundActivated(BackgroundActivatedEventArgs args)

“没有合适的替代方法”只是因为没有......我想?!

只要我尝试一个新的项目“空白应用程序univeral Windows”免于“WPF应用程序.NET框架”overriting是没有问题的。 另外新创建的WPF应用程序不会让我覆盖。

所以我的问题。 我能做些什么来继续使用我的WPF项目的交互式Toast? 还是有其他的方法呢?

链接地址: http://www.djcxy.com/p/51241.html

上一篇: Using Interactive Toast Notifications with a old WPF Project

下一篇: WPF C# Resource Cannot Be Found