我使用本教程後的UWP應用程序的通知集線器:Getting started with Notification Hubs for Windows Universal Platform Apps。Azure通知集線器UWP,UWP Toast通知不會啓動應用程序
如果我測試了Windows 8通知發送類似:
<?xml version="1.0" encoding="utf-8"?>
<toast>
<visual><binding template="ToastText01">
<text id="1">Test message</text>
</binding>
</visual>
</toast>
它的工作原理,如果我的通知點擊,它通過OnLaunched()方法打開的應用程序。但是,如果我發送一個特定UWP類似的通知:
<toast launch="app-defined-string">
<visual>
<binding template="ToastGeneric">
<text>Microsoft Company Store</text>
<text>New Halo game is back in stock!</text>
</binding>
</visual>
<actions>
<action activationType="foreground" content="See more details" arguments="details"/>
<action activationType="background" content="Remind me later" arguments="later"/>
</actions>
</toast>
的烤麪包的作品,但如果我點擊它,打開它的應用程序和OnLaunched()從來沒有所謂所以停留在spashscreen應用。
預先感謝您的幫助,
問候
非常感謝,現在有效。 :) – ArthurCPPCLI