enter image description here如何在wpf中添加这些窗口?我刚开始使用wpf不久,还不知道有哪些功能。我知道大多数工具只在windows中使用。
eagi6jfj1#
您发布的图像显示了所谓的“吐司通知”。根据documentation,1.安装名为Microsoft.Toolkit.Uwp.Notifications的nuget包。1.初始化一个新的ToastContentBuilder(),并按如下方式显示toast通知-
Microsoft.Toolkit.Uwp.Notifications
new ToastContentBuilder() .AddInlineImage(new Uri("Your Image location")) .AddAppLogoOverride(new Uri("Your Image location"), ToastGenericAppLogoCrop.Circle) .Show();
此通知将显示为窗口上的任何其他应用程序通知的一面,据我所知,你不能自定义默认吐司通知的位置。在这种情况下,显示另一个窗口在屏幕上使用.Show()代替通知。
.Show()
1条答案
按热度按时间eagi6jfj1#
您发布的图像显示了所谓的“吐司通知”。
根据documentation,
1.安装名为
Microsoft.Toolkit.Uwp.Notifications
的nuget包。1.初始化一个新的ToastContentBuilder(),并按如下方式显示toast通知-
此通知将显示为窗口上的任何其他应用程序通知的一面,据我所知,你不能自定义默认吐司通知的位置。在这种情况下,显示另一个窗口在屏幕上使用
.Show()
代替通知。