我有这段代码
public void RemoveExistingToastNotifications()
{
var TNM = ToastNotificationManager.CreateToastNotifier();
var notifications = TNM.GetScheduledToastNotifications();
for (int i = 0; i < notifications.Count; i++)
{
TNM.RemoveFromSchedule(notifications[i]);
}
}
效果很好但是这种方法的表现不是很好。是否有更好(更快)的方法来删除所有通知(对于Windows系统8.1及更高版本)?