共用方式為


AppNotificationBuilder.SetScenario(AppNotificationScenario) 方法

定義

設定代理程式更新的案例,這會導致系統調整某些通知行為,以呈現指定案例的一致體驗。

public:
 virtual AppNotificationBuilder ^ SetScenario(AppNotificationScenario value) = SetScenario;
AppNotificationBuilder SetScenario(AppNotificationScenario const& value);
public AppNotificationBuilder SetScenario(AppNotificationScenario value);
function setScenario(value)
Public Function SetScenario (value As AppNotificationScenario) As AppNotificationBuilder

參數

value
AppNotificationScenario

列舉中的值, AppNotificationScenario 指定代理程式更新的案例。

傳回

傳回 AppNotificationBuilder 實例,以便鏈結其他方法呼叫。

範例

下列範例示範如何在代理程式更新的 XML 承載中設定通知案例。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .SetScenario(AppNotificationScenario.Reminder)
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

產生的 XML 承載:

<toast scenario='reminder'>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
</toast>

備註

只有 Windows 10 組建 19041 和更新版本才支援緊急案例值。 呼叫 IsUrgentScenarioSupported 以判斷目前裝置是否支援緊急案例。

如需使用 AppNotificationBuilder API 建立代理程式更新 UI 的指引,請參閱 代理程式更新內容

如需代理程式更新之 XML 架構的參考資訊,請參閱 代理程式更新內容架構

適用於