DispatcherTimer.IsEnabled 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定值,這個值表示計時器是否正在執行。
public:
property bool IsEnabled { bool get(); void set(bool value); };
public bool IsEnabled { get; set; }
member this.IsEnabled : bool with get, set
Public Property IsEnabled As Boolean
屬性值
如果已啟用計時器,則為 true
,否則為 false
。 預設為 false
。
範例
下列範例會建立 DispatcherTimer。 已建立名為 dispatcherTimer
的新 DispatcherTimer 物件。 事件處理常式 dispatcherTimer_Tick
會新增至 Tick 事件。 使用 Interval 物件設定為 1 秒 TimeSpan 。
// 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()
備註
IsEnabled 必須設定為 true
, Tick 才能引發事件。
呼叫 Start 集合 IsEnabled 為 true
。
呼叫 Stop 集合 IsEnabled 為 false
。