DispatcherTimer.Interval 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定計時器刻度之間的時間間隔。
public:
property TimeSpan Interval { TimeSpan get(); void set(TimeSpan value); };
public TimeSpan Interval { get; set; }
member this.Interval : TimeSpan with get, set
Public Property Interval As TimeSpan
屬性值
刻度之間的時間間隔。 預設為 00:00:00。
例外狀況
interval
小於 0 或大於 Int32.MaxValue 毫秒。
範例
下列範例會建立 DispatcherTimer。 系統會建立名為 dispatcherTimer
的新 DispatcherTimer 物件。 事件處理常式 dispatcherTimer_Tick
會新增至 Tick 事件。 會 Interval 使用 TimeSpan 物件設定為 1 秒。
// DispatcherTimer setup
dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = TimeSpan.FromSeconds(1);
dispatcherTimer.Start();
' DispatcherTimer setup
dispatcherTimer = New Threading.DispatcherTimer()
AddHandler dispatcherTimer.Tick, AddressOf dispatcherTimer_Tick
dispatcherTimer.Interval = New TimeSpan(0,0,1)
dispatcherTimer.Start()
備註
計時器不保證會在時間間隔發生時完全執行,但保證不會在時間間隔發生之前執行。 這是因為 DispatcherTimer 作業會像其他作業一樣放在 Dispatcher 佇列上。 DispatcherTimer當作業執行時,取決於佇列中的其他作業及其優先順序。