2
如何在使用Microsoft.Toolkit.Uwp.Notifications庫的WPF應用程序的系統吐司通知上將click
事件附加到按鈕上?WPF上的系統通知
我知道我需要使用IBackground
接口,但我不能綁定到這個類,因爲下面的代碼導致錯誤(ToastNotificationActionTrigger()
元素未找到,HRESULT:0x80070490)。
private void RegisterBackgroundTask()
{
const string taskName = "ToastBackgroundTask";
// Otherwise create the background task
var builder = new BackgroundTaskBuilder();
builder.Name = taskName;
builder.TaskEntryPoint = typeof(ToastNotificationBackgroundTask).FullName;
// And set the toast action trigger
builder.SetTrigger(new ToastNotificationActionTrigger());
// And register the task
builder.Register();
}
我通知的觀點:
請幫助。
謝謝,@ ganchito55,我已經現在如何顯示簡單的系統通知與文字,描述和圖像,但現在我想實現按鈕通知。我使用了[以下文章](https://blogs.msdn.microsoft.com/tiles_and_toasts/2015/07/08/quickstart-sending-a-local-toast-notification-and-handling-activations-from-it-it- windows-10 /),但我無法處理點擊按鈕事件。 –
@VitaliiKulyk我剛剛關注了那篇文章,並且在一個新的WPF應用程序中,我遇到ToastNotification無法識別的錯誤。你能用你的代碼給我一個項目嗎?我會盡力解決它。 – ganchito55
mr @ ganchito55,你可以點擊[鏈接](https://github.com/vitcool/WPFDesctopNotifications/tree/master/CSharp-Toast-Example)下載我的項目。我會感謝任何幫助。 –