我在我的程序中添加了一个 toast 通知,编译它,它按预期工作。
将显示 toast 通知。
之后我添加了激活的事件:
toast.Activated += toast_Activated;
void toast_Activated(ToastNotification sender, object args)
{
}
尝试编译此代码时,出现以下错误:
该语言不支持属性、索引器或事件“Windows.UI.Notifications.ToastNotification.Activated”;尝试直接调用访问器方法“Windows.UI.Notifications.ToastNotification.add_Activated(Windows.Foundation.TypedEventHandler)”或“Windows.UI.Notifications.ToastNotification.remove_Activated(System.Runtime.InteropServices.WindowsRuntime.EventRegistrationToken)”
我究竟做错了什么?