我正在为一个应该精确闪烁单词Label的表单编写代码。 它使用" expositionTime" 显示X毫秒的标签和" intervalTime" 将其隐藏Y毫秒。
该过程将重复Z次' numExpositions'并在单击按钮后启动。 我的代码没有错误,我使用两个计时器来完成工作。 问题是定时器在一些说明之后变得不同步。
我的问题是,是否有一个解决方案能够为我提供精确的时间同步,其中展示时间(显示标签)和间隔(隐藏)将一起开始和结束 - 可能在单独的线程上使用定时器或监视等待和如何实施它们。
我的部分代码使用两个计时器:
private System.Windows.Forms.Timer timer1;
private System.Windows.Forms.Timer timer2;
private static int counter = 0;
private static int numExpositions = 16;
private static int expositionTime = 2000;
private static int intervalTime = 1800;
// starts both timers that get desynchronized after some time
private void button1_Click(object sender, EventArgs e) { startTimer1(); startTimer2(); }
public void startTimer1()
{
timer1 = new System.Windows.Forms.Timer() { Interval = expositionTime + intervalTime };
timer1.Tick += new EventHandler(OnTimer1Event);
timer1.Start();
}
public void startTimer2()
{
timer2 = new System.Windows.Forms.Timer() { Interval = intervalTime };
timer2.Tick += new EventHandler(OnTimer2Event);
timer2.Start();
}
private void OnTimer1Event(object sender, EventArgs e)
{
if (counter >= numExpositions) // stops timers
{
timer1.Stop();
timer2.Stop();
wordLabel.Visible = false;
counter = 0;
this.Close()
}
else
{
wordLabel.Visible = true; // shows wordLabel
}
}
private void OnTimer2Event(object sender, EventArgs e)
{
wordLabel.Visible = false; // hides wordLabel
}
答案 0 :(得分:2)
更好的方法是这样:
private async Task DoIt()
{
for(int i = 0 ; i < numExpositions; i++)
{
wordLabel.Visible = true;
await Task.Delay(expositionTime); //expositionTime is the number of milliseconds to keep the label visible
wordLabel.Visible = false;
await Task.Delay(intervalTime); //intervalTime is the number of milliseconds to keep the label hidden
}
}
private void button1_Click(object sender, EventArgs e)
{
DoIt();
}
这要求您使用.NET Framework 4.5或更高版本。