处理 DispatcherTimer.Tick 方法时出错
Error when dealing with DispatcherTimer.Tick method
我需要一个简单的计时器,用于在我的 UWP 应用程序的 TextBlock 中打印倒计时。有人建议我使用 DispatcherTimer。那是我的代码。
private void MainButton_Click(object sender, RoutedEventArgs e)
{
dispatcherTimer = new DispatcherTimer();
dispatcherTimer.Tick += DispatcherTimer_Tick;
dispatcherTimer.Interval = new TimeSpan(1000);
dispatcherTimer.Start();
}
private int Seconds;
private void DispatcherTimer_Tick(object sender, DispatcherTimer e)
{
Seconds++;
MainTextBlock.Text = Seconds.ToString();
}
无论如何,我看到了这个错误,但我无法弄清楚。
也欢迎任何帮助我找到更好的解决方案的人。
请编辑以上DispatcherTimer_Tick like
以下内容。你可以按+=Tab键自动生成事件句柄方法。
private void DispatcherTimer_Tick(object sender, object e)
{
}
我需要一个简单的计时器,用于在我的 UWP 应用程序的 TextBlock 中打印倒计时。有人建议我使用 DispatcherTimer。那是我的代码。
private void MainButton_Click(object sender, RoutedEventArgs e)
{
dispatcherTimer = new DispatcherTimer();
dispatcherTimer.Tick += DispatcherTimer_Tick;
dispatcherTimer.Interval = new TimeSpan(1000);
dispatcherTimer.Start();
}
private int Seconds;
private void DispatcherTimer_Tick(object sender, DispatcherTimer e)
{
Seconds++;
MainTextBlock.Text = Seconds.ToString();
}
无论如何,我看到了这个错误,但我无法弄清楚。
也欢迎任何帮助我找到更好的解决方案的人。
请编辑以上DispatcherTimer_Tick like
以下内容。你可以按+=Tab键自动生成事件句柄方法。
private void DispatcherTimer_Tick(object sender, object e)
{
}