Où puis-je trouver un contrôle qui ressemble au contrôle de minuterie C # dans WPF?
Réponses
Trop de publicités? Le temporisateur WPF habituel est DispatcherTimer
, qui n'est pas un contrôle mais utilisé dans le code. Il fonctionne essentiellement de la même manière que le minuteur WinForms:
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0,0,1);
dispatcherTimer.Start();
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// code goes here
}
Plus d'informations sur le DispatcherTimer peuvent être trouvées ici
Malcor
Points
165
Pavan R Bhupalam
Points
1
Dinesh Rajan
Points
339
Cela a fonctionné pour moi pour une application Windows 8: classe DispatcherTimer