AppNotificationButton.IsToolTipSupported メソッド

定義

現在のデバイスのアプリ通知ボタンでツール ヒントがサポートされているかどうかを示す値を返します。

public:
 static bool IsToolTipSupported();
 static bool IsToolTipSupported();
public static bool IsToolTipSupported();
function isToolTipSupported()
Public Shared Function IsToolTipSupported () As Boolean

戻り値

Boolean

bool

True を指定すると、ツール ヒントがサポートされます。それ以外の場合は false。

次の例では、アプリ通知ボタンのスタイルがサポートされているかどうかを確認する方法を示します。

var button = new AppNotificationButton("Reply")
    .AddArgument("action", "reply");

if (AppNotificationButton.IsToolTipSupported())
{
    button.SetToolTip("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 以降でのみサポートされています。 このメソッドを使用すると、ツール ヒントが現在のデバイスでサポートされているかどうかを実行時に判断できます。

AppNotificationBuilder API を使用してアプリ通知用の UI を作成する方法については、「アプリ通知コンテンツ」を参照してください。

アプリ通知の XML スキーマのリファレンス情報については、「アプリ 通知コンテンツ スキーマ」を参照してください。

適用対象