我的应用程序使用 WNS 服务器从 PHP 接收 toast。现在我想在单击下面列出的 toast 时执行一些操作。当应用程序未激活时 - 用户应重定向到应用程序“ShowPage”上的页面。当应用程序处于活动状态时 - toast 应显示两个按钮“显示”和“取消”。单击显示按钮时,应用程序应重定向到“ShowPage”
我目前的 PHP 祝酒词是
$toastMessage= '<?xml version="1.0" encoding="utf-8"?>'.
'<toast launch="">'.
'<visual baseUri="">'.
'<binding template="ToastGeneric">'.
'<text>'.$subtitle.'</text>'.
'</binding>'.
'</visual>'.
'<actions />'.
'</toast>';
我在 App.xaml.cs 上调用下面的函数
private async void RegisterEngagementNotification()
{
StoreServicesEngagementManager engagementManager = StoreServicesEngagementManager.GetDefault();
await engagementManager.RegisterNotificationChannelAsync();
}