I have a bug with a progressbar, and I don't know what to do with it.
I have a for cycle (or loop) that runs from 0 to 100, and just reports his progress, and then sleeps 100ms:
private void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)
{
for (int i = 0; i <= 100; i++)
{
backgroundWorker.ReportProgress(i);
Thread.Sleep(100);
}
}
And in the progresschanged event handler method in addition to some other stuff there are two "if"s:
if (matchProgressBar.Value == 50)
{
OnHalfTime(); //listBox1.Add("Halftime!");
}
if (matchProgressBar.Value == 100)
{
OnFullTime(); //listBox1.Add("Full time!");
}
The two "unknown" method is adds a line to a listBox. In the first case: "Halftime!"; and in the second: "Full time!". And after both lines there's the same "Thread.Sleep(5000);" //You know, just because you need some break in halftime :) //
But the problem is that however the listBox1 has already been updated, but the GUI sleeps 5 secs before the progressbar has updated. (So the program stucks at 49% and 99% for 5 secs.)
Question: Can I do something to fix this?
Thread.Sleepin the progress changed handler. Sleeping in the UI thread is bad, and you need to remove that, but I don't know what should replace it since you don't explain what the purpose of thatSleepcall is. I also find it odd that you omit the clearly important and problematic section of code. – Servy Nov 26 '12 at 22:07