Si encuentras alguna parte que no comprendes puedes comentarlo y te responderemos rápidamente.
Ejemplo 1: temporizador c# wpf
using System;
using System.Windows;
using System.Windows.Threading;
namespace WpfTutorialSamples.Misc
public partial class DispatcherTimerSample : Window
public DispatcherTimerSample()
InitializeComponent();
DispatcherTimer timer = new DispatcherTimer();
timer.Interval = TimeSpan.FromSeconds(1);
timer.Tick += timer_Tick;
timer.Start();
void timer_Tick(object sender, EventArgs e)
lblTime.Content = DateTime.Now.ToLongTimeString();
Ejemplo 2: Temporizador C# WPF
System.Windows.Threading.DispatcherTimer dispatcherTimer = new System.Windows.Threading.DispatcherTimer();
dispatcherTimer.Tick += new EventHandler(dispatcherTimer_Tick);
dispatcherTimer.Interval = new TimeSpan(0,5,0);
dispatcherTimer.Start();
private void dispatcherTimer_Tick(object sender, EventArgs e)
// code goes here
Te mostramos comentarios y puntuaciones
Si posees alguna incertidumbre y capacidad de refinar nuestro post puedes realizar un exégesis y con placer lo leeremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)