c# - reloj wpf
WPF Timer Like C#Timer (3)
¿Dónde puedo encontrar un control que sea como el C # Timer Control en WPF?
Con Dispatcher deberás incluir
using System.Windows.Threading;
También tenga en cuenta que si hace clic derecho en DispatcherTimer y hace clic en Resolver, debe agregar las referencias apropiadas.
también puedes usar
using System.Timers;
using System.Threading;
El temporizador WPF habitual es DispatcherTimer
, que no es un control sino que se usa en el código. Básicamente funciona de la misma manera que el temporizador WinForms:
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += dispatcherTimer_Tick;
dispatcherTimer.Interval = new TimeSpan(0,0,1);
dispatcherTimer.Start();
private void dispatcherTimer_Tick(object sender, EventArgs e)
{
// code goes here
}
Puede encontrar más información sobre DispatcherTimer here