共用方式為


DispatcherQueueTimer.IsRepeating 屬性

定義

取得或設定值,這個值表示計時器是否重複。

public:
 property bool IsRepeating { bool get(); void set(bool value); };
bool IsRepeating();

void IsRepeating(bool value);
public bool IsRepeating { get; set; }
var boolean = dispatcherQueueTimer.isRepeating;
dispatcherQueueTimer.isRepeating = boolean;
Public Property IsRepeating As Boolean

屬性值

Boolean

bool

true 表示計時器會引發每個 DispatcherQueueTimer.Interval; false 表示計時器會在 DispatcherQueueTimer.Interval 經過之後引發一次。 預設值為 true

備註

如果您在計時器執行時變更 IsRepeating 值,計時器將會以新的值重新開機。

適用於