gpt4 book ai didi

windows - 如何将点击事件添加到来自通知中心的 Toast 通知?

转载 作者:可可西里 更新时间:2023-11-01 10:44:31 24 4
gpt4 key购买 nike

我需要向来自通知中心的 Toast 通知添加 onclick 操作。

我正在开发一个 windows 8.1 通用应用程序,我需要在用户单击 toast 时将其导航到另一个页面

最佳答案

您可以使用以下代码片段处理 toast 通知:

protected override void OnLaunched(LaunchActivatedEventArgs args)
{
string launchString = args.Arguments;

....
}

创建 toasts 时必须设置启动参数:

var navigationString = ""#/MainPage.xaml?param1=12345";
var toastElement = ((XmlElement)toastXml.SelectSingleNode("/toast"));
toastElement.SetAttribute("launch", navigationString);

更多详情:https://msdn.microsoft.com/en-us/library/windows/apps/xaml/hh868212.aspx http://www.c-sharpcorner.com/UploadFile/59b9d6/toast-notification-for-wp-8-1/

关于windows - 如何将点击事件添加到来自通知中心的 Toast 通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31940518/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com