AppNotificationButton.IsButtonStyleSupported 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回值,指出目前裝置上的應用程式通知按鈕是否支援按鈕樣式。
public:
static bool IsButtonStyleSupported();
static bool IsButtonStyleSupported();
public static bool IsButtonStyleSupported();
function isButtonStyleSupported()
Public Shared Function IsButtonStyleSupported () As Boolean
傳回
Boolean
bool
如果支援按鈕樣式,則為 True;否則為 false。
範例
下列範例示範如何檢查是否支援應用程式通知按鈕樣式,如果是,請設定按鈕樣式。
var button = new AppNotificationButton("Reply")
.AddArgument("action", "reply");
if(AppNotificationButton.IsButtonStyleSupported())
{
button.SetButtonStyle(AppNotificationButtonStyle.Critical);
}
var builder = new AppNotificationBuilder()
.AddText("Notification text.")
.AddButton(button);
AppNotificationManager.Default.Show(builder.BuildNotification());
如果支持緊急案例,則產生的 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.SetButtonStyle 方法可讓您從 AppNotificationButtonStyle 列舉指定其中一個按鈕樣式,以提供一致的常見案例體驗。 此功能僅支援 Windows 10 組建 19041 和更新版本。 這個方法可讓您在運行時間判斷目前裝置是否支援按鈕樣式。
如需使用 AppNotificationBuilder API 來建立應用程式通知 UI 的指引,請參閱 應用程式通知內容。
如需應用程式通知 XML 架構的參考資訊,請參閱 應用程式通知內容架構。