DispatcherQueueTimer.IsRepeating 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指出計時器是否重複。
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 經過之後引發一次。
備註
IsRepeating的預設值為 true
。 如果您在計時器執行時變更 IsRepeating 值,計時器將會以新的值重新開機。