AppNotificationDuration 列舉
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定顯示 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
- 屬性
欄位
名稱 | 值 | Description |
---|---|---|
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來設定應用程式通知的持續時間。