こんにちは
。Windows RT アプリケーションのトースト通知をテストしています。マニフェスト ファイルで「Toast Capable」を yes に設定し、次のコードを使用して、ボタンによって呼び出されるサンプル メソッドを作成します。
var toastTemplate = ToastNotificationManager.GetTemplateContent(ToastTemplateType.ToastImageAndText01);
var text = toastTemplate.GetElementsByTagName("text")[0] as XmlElement; text.AppendChild(toastTemplate.CreateTextNode("これはテストです!"));
var image = toastTemplate.GetElementsByTagName("image")[0] as XmlElement; image.SetAttribute("src", String.Format("ms-appx:///{0}", "Images/rss_logo.png"));
ToastNotification toastNotification = new ToastNotification(toastTemplate); ToastNotifier toastNotifier = ToastNotificationManager.CreateToastNotifier(); toastNotifier.Show(トースト通知);
ボタンをクリックすると、画面の右上に通知が表示されますが、テキストと画像はありません...ボックスだけで、アプリケーションのロゴがあります。
どこが間違っているのか教えてください。ご協力いただきありがとうございます。