DispatcherTimer.IsEnabled Proprietà

Definizione

Ottiene o imposta un valore che indica se il timer è in esecuzione.

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

Valore della proprietà

true se il timer è abilitato; in caso contrario, false. Il valore predefinito è false.

Esempio

Nell'esempio seguente viene creato un oggetto DispatcherTimer. Viene creato un nuovo DispatcherTimer oggetto denominato dispatcherTimer . Il gestore dispatcherTimer_Tick eventi viene aggiunto all'evento Tick . L'oggetto Interval è impostato su 1 secondo usando un TimeSpan oggetto.

//  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()

Commenti

IsEnabled deve essere impostato su true per la generazione dell'evento Tick .

IsEnabled Set di chiamate Start a true.

IsEnabled Set di chiamate Stop a false.

Si applica a