次の方法で共有


AppNotificationDuration 列挙型

定義

AppNotification を表示する期間を指定します。

public enum class AppNotificationDuration
/// [Windows.Foundation.Metadata.ContractVersion(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract, 65536)]
enum class AppNotificationDuration
[Windows.Foundation.Metadata.ContractVersion(typeof(Microsoft.Windows.AppNotifications.Builder.AppNotificationBuilderContract), 65536)]
public enum AppNotificationDuration
var value = Microsoft.Windows.AppNotifications.Builder.AppNotificationDuration.default
Public Enum AppNotificationDuration
継承
AppNotificationDuration
属性

フィールド

名前 説明
Default 0

既定の期間。

Long 1

長い期間。

次の例では、アプリ通知の XML ペイロードの期間を設定する方法を示します。

var notification = new AppNotificationBuilder()
    .AddText("Notification text.")
    .SetDuration(AppNotificationDuration.Long)
    .BuildNotification();

AppNotificationManager.Default.Show(notification);

結果の XML ペイロード:

<toast duration='long'>
    <visual>
        <binding template='ToastGeneric'>
            <text>Notification text.</text>
        </binding>
    </visual>
</toast>

注釈

AppNotificationBuilder.SetDuration呼び出して、アプリ通知の期間を設定します。

適用対象