ShowDialog, PropertyGrid and Timer problem - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T09:04:35Zhttp://stackoverflow.com/feeds/question/734978http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/734978/showdialog-propertygrid-and-timer-problem1ShowDialog, PropertyGrid and Timer problemYacoder2009-04-09T16:32:09Z2009-04-09T17:55:49Z
<p>I have a strange bug, please, let me know if you have any clues about the reason.</p>
<p>I have a <code>Timer</code> (<code>System.Windows.Forms.Timer</code>) on my main form, which fires some updates, which also eventually update the main form UI. Then I have an editor, which is opened from the main form using the <code>ShowDialog()</code> method. On this editor I have a <code>PropertyGrid</code> (<code>System.Windows.Forms.PropertyGrid</code>).</p>
<p>I am unable to reproduce it everytime, but pretty often, when I use dropdowns on that property grid in editor it gets stuck, that is OK/Cancel buttons don't close the form, property grid becomes not usable, Close button in the form header doesn't work.</p>
<p>There are no exceptions in the background, and if I break the process I see that the app is doing some calculations related to the updates I mentioned in the beginning.</p>
<p>What can you recommend? Any ideas are welcome.</p>
http://stackoverflow.com/questions/734978/showdialog-propertygrid-and-timer-problem/735246#7352462Answer by SnOrfus for ShowDialog, PropertyGrid and Timer problemSnOrfus2009-04-09T17:50:01Z2009-04-09T17:55:49Z<p>What's happening is that the thread timer's Tick method doesn't execute on a different thread, so it's locking everything else until it's done. I made a test winforms app that had a timer and 2 buttons on it whose events did this:</p>
<pre><code>private void timer1_Tick(object sender, EventArgs e)
{
Thread.Sleep(6000);
}
private void button1_Click(object sender, EventArgs e)
{
timer1.Start();
}
private void button2_Click(object sender, EventArgs e)
{
frmShow show = new frmShow();
show.ShowDialog(); // frmShow just has some controls on it to fiddle with
}
</code></pre>
<p>and indeed it blocked as you described. The following solved it:</p>
<pre><code>private void timer1_Tick(object sender, EventArgs e)
{
ThreadPool.QueueUserWorkItem(DoStuff);
}
private void DoStuff(object something)
{
Thread.Sleep(6000);
}
</code></pre>