このチュートリアルの後にUWPアプリケーション用の通知ハブを使用しています:Getting started with Notification Hubs for Windows Universal Platform Apps。Azure通知ハブUWP、UWPトースト通知がアプリを起動しない
私のような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に貼り付けて呼び出されることはありません。あなたは
protected override void OnActivated(IActivatedEventArgs args)
{
base.OnActivated(args);
}
あなたapp.xaml.csでOnActivatedを実装する必要が
よろしく
ありがとう、それは今動作します。 :) – ArthurCPPCLI