WPF---DispatcherTimer定时器
WPF界面是没有timer控件的,Winform有。但是我们可以使用DispatcherTimer来实现定时器。
在WPF应用程序中,DispatcherTimer
是一种常用的计时器工具,它可以在指定的时间间隔触发事件。以下是一个简单的使用DispatcherTimer
的例子:
cs
public partial class MainWindow : Window
{
private DispatcherTimer timer;
private int count;
public MainWindow()
{
InitializeComponent();
// 创建计时器实例
timer = new DispatcherTimer();
// 设置间隔时间(例如,每隔1秒触发一次)
timer.Interval = TimeSpan.FromSeconds(1);
// 添加Tick事件处理程序
timer.Tick += Timer_Tick;
// 启动计时器
timer.Start();
}
private void Timer_Tick(object sender, EventArgs e)
{
// 这里处理每次计时器触发的事件
count++;
// 假设有一个名为"txtCounter"的文本框来显示计数
txtCounter.Text = count.ToString();
}
}