在Windows Phone 8.1中,当我们通过点击通知
打开应用时,所有通知都无法清除
所以我试图在OnAppLaunched事件中以编程方式清除我的应用程序的推送通知
private void OnAppLaunched(object state)
{
var toastNotificationManager = Windows.UI.Notifications.ToastNotificationManager.History;
toastNotificationManager.Clear();
}
但它不适用于我。 所以有人可以帮我这个吗?