我想从WPF程序发送一个本地吐司通知。现在我正在使用最新的。net 6。
这里是微软的教程:https://learn.microsoft.com/en-us/windows/apps/design/shell/tiles-and-notifications/send-local-toast?tabs=uwp
在教程中它说:
.NET apps must use one of the Windows TFMs, otherwise the toast sending and management APIs like Show() will be missing. Set your TFM to net6.0-windows10.0.17763.0 or later.
在windows10.0.17763.0或更高版本中,我想使用吐司通知。
在windows10.0.17763.0之前甚至windows 7中,我会自己做一个通知控件。
然而,在我将TFM设置为net 6. 0-windows10. 0. 17763. 0之后,我的程序将不再支持windows10. 0. 17763. 0之前甚至windows7。
有没有什么方法可以同时支持这两个平台?谢谢。
1条答案
按热度按时间rekjcdws1#
如果您希望在我们的应用中使用
ToastContentBuilder.Show
API,但仍使用其他API支持Windows 7,则可以在项目文件中指定两个TFM:然后,您可以使用预处理器指令根据TFM: