我想创建几个计时器,倒数x时间,独立工作,更新textBlock中的时间,并在完成后做一些事情。
所以我写道:
private DispatcherTimer d1, blueTimer;
private void but1_Click(object sender, RoutedEventArgs e)
{
if (redTimer == null)
{
d1 = new System.Windows.Threading.DispatcherTimer();
d1.Tick += new EventHandler(d1_Tick);
d1.Interval = new TimeSpan(0, 0, 1);
d1.Start();
}
}
private void but2_Click(object sender, RoutedEventArgs e)
{
if (d2 == null)
{
d2 = new System.Windows.Threading.DispatcherTimer();
d2.Tick += new EventHandler(d2_Tick);
d2.Interval = new TimeSpan(0, 0, 1);
d2.Start();
}
}
private void d1_Tick(object sender, EventArgs e)
{
int time = string2time(t1.Text);
if (time > 0)
{
t1.Text = time2string(--time);
}
else
{
d1.Stop();
}
}
private void d2_Tick(object sender, EventArgs e)
{
int time = string2time(t2.Text);
if (time > 0)
{
t2.Text = time2string(--time);
}
else
{
d2.Stop();
}
}
时间是例如15秒。当我点击but1时,时间倒计时,当t1为10秒时,我点击but2,t2也是10秒,并且倒计时时间相同。
为什么会这样? 如何避免?
答案 0 :(得分:0)
Sry误读了代码。再来一次。
你能发布“string2time”和“time2string”的代码吗?
另外,请检查您的实际代码是否与发布的代码相同:
private DispatcherTimer d1, blueTimer; // <-- d1 and blueTimer? blueTimer is never
//mentioned. However a "redTimer" object appears in your code
private void but1_Click(object sender, RoutedEventArgs e)
{
if (redTimer == null) // <-- shouldn´t this be "(d1 == null)"?
{
d1 = new System.Windows.Threading.DispatcherTimer();
d1.Tick += new EventHandler(d1_Tick);
d1.Interval = new TimeSpan(0, 0, 1);
d1.Start();
}
}
private void but2_Click(object sender, RoutedEventArgs e)
{
if (d2 == null)
{
d2 = new System.Windows.Threading.DispatcherTimer();
d2.Tick += new EventHandler(d2_Tick);
d2.Interval = new TimeSpan(0, 0, 1);
d2.Start();
}
}
我不确定问题是什么。据我所知,你有2个文本框,你可以在其中输入时间。在您的示例中,第一个读取“15”,第二个读取“10”。现在单击第一个按钮,“d1”开始倒数第一个框中的时间。当它达到“10”时,与另一个相同,单击第二个按钮。从哪个开始“d2”然后将以相同的间隔倒计数第二个框中的文本。 如果发生了什么,那么代码正在做它应该做的事情?或者你想要达到什么效果。不确定。
请澄清问题。
编辑:
你可以简化这个:
private string time2string(int time)
{
string stime = "";
int m, s = 0;
m = time / 60;
//s = time - m * 60;
s = time % 60; // this is a modulo, it will divide the number by 60 and provide the
// rest. Learn to use it, it may save you a lot of work sometimes.
//stime = m < 10 ? "0" + m.ToString() : m.ToString();
//stime += ":" + (s < 10 ? "0" + s.ToString() : s.ToString());
stime = string.Format("{0:D2}:{1:D2}", m, s}; // does the same as the two previous lines
return stime;
}
除此之外,我也没有看到你的代码出错的地方。你可以检查一个或两个textBoxes是否有一个“xyz_Changed”事件,这个事件的处理方式都是显示相同的值。也许你使用它来方便两者显示相同的起始值或其他东西。
我可以建议的另一件事就是你可以发布到目前为止的完整代码。