AppNotificationButton.SetButtonStyle(AppNotificationButtonStyle) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知ボタンのボタン スタイルを設定します。
public:
virtual AppNotificationButton ^ SetButtonStyle(AppNotificationButtonStyle value) = SetButtonStyle;
AppNotificationButton SetButtonStyle(AppNotificationButtonStyle const& value);
public AppNotificationButton SetButtonStyle(AppNotificationButtonStyle value);
function setButtonStyle(value)
Public Function SetButtonStyle (value As AppNotificationButtonStyle) As AppNotificationButton
パラメーター
ボタンのスタイルを指定する AppNotificationButtonStyle 列挙の値。
戻り値
追加のメソッド呼び出しをチェーンできるように、AppNotificationButton インスタンスを返します。
例
次の例では、アプリ通知ボタン のスタイルがサポートされているかどうかを確認し、サポートされている場合はボタン スタイルを設定する方法を示します。
var button = new AppNotificationButton("Reply")
.AddArgument("action", "reply");
if(AppNotificationButton.IsButtonStyleSupported())
{
button.SetButtonStyle(AppNotificationButtonStyle.Critical);
}
var notification = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(button)
.BuildNotification();
AppNotificationManager.Default.Show(notification);
緊急シナリオがサポートされている場合の結果の XML ペイロード:
<toast>
<visual>
<binding template='ToastGeneric'>
<text>Notification text.</text>
</binding>
</visual>
<actions>
<action content='Reply' arguments='action=reply' hint-toolTip='Click to reply.'/>
</actions>
</toast>
注釈
ボタン スタイルは、Windows 10 ビルド 19041 以降でのみサポートされています。 AppNotificationButton.IsButtonStyleSupported
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。