DispatcherTimer.Start Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Démarre DispatcherTimer.
public:
void Start();
public void Start ();
member this.Start : unit -> unit
Public Sub Start ()
Exemples
L’exemple suivant crée un DispatcherTimer. Un nouvel DispatcherTimer objet nommé dispatcherTimer
est créé. Le gestionnaire d’événements dispatcherTimer_Tick
est ajouté à l’événement Tick . est Interval défini sur 1 seconde à l’aide d’un TimeSpan objet.
// 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()
Remarques
Le paramètre sur IsEnabledfalse
quand le minuteur est démarré arrête le minuteur.
La définition IsEnabled de sur true
quand le minuteur est arrêté démarre le minuteur.
Start définit IsEnabled sur true
.
Start réinitialise le minuteur Interval.