我的代码显示该行中的线程无效的跨线程访问 label_mytimer.Text = mytimeLeft +“Sec”;在调试中运行时,但在正常执行时,它没有问题。我怎么能避免多线程访问,我知道问题是许多线程试图同时访问我的文本框控件,如果它工作,不知道如何使用backgroundworker。
private void ttOnTimedEvent(object source, ElapsedEventArgs e)
{
if (mytimeLeft > 0)
{
// Display the new time left
// by updating the Time Left label.
mytimeLeft = mytimeLeft - 1;
label_mytimer.Text = mytimeLeft + " Sec";//Show time left
}
else
{
label_mytimer.Text = "OK...";
mytimeLeft = int.Parse(tBox_rp_Time.Text);
mycountdownTimer.Stop();
mycountdownTimer.Enabled = false;
}
答案 0 :(得分:0)
您可以使用MethodInvoker在GUI线程上运行
private void ttOnTimedEvent(object source, ElapsedEventArgs e)
{
MethodInovker mi = new delegate{
if (mytimeLeft > 0)
{
// Display the new time left
// by updating the Time Left label.
mytimeLeft = mytimeLeft - 1;
label_mytimer.Text = mytimeLeft + " Sec";//Show time left
}
else
{
label_mytimer.Text = "OK...";
mytimeLeft = int.Parse(tBox_rp_Time.Text);
mycountdownTimer.Stop();
mycountdownTimer.Enabled = false;
}
};
if(InvokeRequired)
this.Invoke(mi);
}