AppNotificationButton.ToolTip プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
アプリ通知ボタンのツール ヒント テキストを取得または設定します。
public:
property Platform::String ^ ToolTip { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring ToolTip();
void ToolTip(winrt::hstring value);
public string ToolTip { get; set; }
var string = appNotificationButton.toolTip;
appNotificationButton.toolTip = string;
Public Property ToolTip As String
プロパティ値
ツール ヒント テキストを含む文字列。
例
次の例では、このプロパティを使用してアプリ通知ボタンのツール ヒントを設定する方法を示します。
var button = new AppNotificationButton("Reply")
.AddArgument("action", "reply");
if (AppNotificationButton.IsToolTipSupported())
{
button.ToolTip = "Click to reply.";
}
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>
注釈
AppNotificationButton.SetToolTip メソッドを呼び出して、ツール ヒント テキストを設定することもできます。
ツール ヒント テキストは、Windows 10 ビルド 19041 以降でのみサポートされています。 AppNotificationButton.IsToolTipSupported
アプリ通知の XML スキーマのリファレンス情報については、「アプリ通知コンテンツ スキーマ」を参照してください。