ToastNotification(XmlDocument) コンストラクター
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ToastNotification の新しいインスタンスを作成して初期化します。
public:
ToastNotification(XmlDocument ^ content);
ToastNotification(XmlDocument const& content);
public ToastNotification(XmlDocument content);
function ToastNotification(content)
Public Sub New (content As XmlDocument)
パラメーター
- content
- XmlDocument
トースト通知を定義する XML コンテンツ。
例
次の例では、ToastNotification コンストラクターの使用など、テキストと画像を含むトースト通知を作成して送信する方法を示します。
var notifications = Windows.UI.Notifications;
// Get the toast notification manager for the current app.
var notificationManager = notifications.ToastNotificationManager;
// The getTemplateContent method returns a Windows.Data.Xml.Dom.XmlDocument object
// that contains the toast notification XML content.
var template = notifications.ToastTemplateType.toastImageAndText01;
var toastXml = notificationManager.getTemplateContent(notifications.ToastTemplateType[template]);
// You can use the methods from the XML document to specify the required elements for the toast.
var images = toastXml.getElementsByTagName("image");
images[0].setAttribute("src", "images/toastImageAndText.png");
var textNodes = toastXml.getElementsByTagName("text");
textNodes.forEach(function (value, index) {
var textNumber = index + 1;
var text = "";
for (var j = 0; j < 10; j++) {
text += "Text input " + /*@static_cast(String)*/textNumber + " ";
}
value.appendChild(toastXml.createTextNode(text));
});
// Create a toast notification from the XML, then create a ToastNotifier object
// to send the toast.
var toast = new notifications.ToastNotification(toastXml);
notificationManager.createToastNotifier().show(toast);
適用対象
こちらもご覧ください
- Toast notifications sample (トースト通知のサンプル)
- デスクトップ アプリからのトースト通知の送信サンプル
- トースト XML スキーマ
- タイル、バッジ、通知
- クイック スタート: トースト通知の送信
- クイック スタート: トースト プッシュ通知の送信
- クイック スタート: デスクトップからトースト通知を送信する
- トースト通知のガイドラインとチェックリスト
- トースト通知からのアクティブ化を処理する方法
- トースト通知をオプトインする方法
- トースト通知をスケジュールする方法
- AppUserModelID を使用して、デスクトップ トースト通知を有効にする方法
- トースト テンプレート カタログ
- トースト オーディオ オプション