C# GUI handle problems on close - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T02:44:17Zhttp://stackoverflow.com/feeds/question/762742http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close0C# GUI handle problems on closeacidzombie242009-04-18T02:12:03Z2009-04-18T02:42:43Z
<p>I get a System.InvalidOperationException error when i close my app before the search is done. When i close on Form1_FormClosing i tell all my threads to abort. In one thread it has finalize which calls a delegate function which tells one of the controls in the form to change its text. When that happens I get the exception above along with "Additional information: Invoke or BeginInvoke cannot be called on a control until the window handle has been created."</p>
<p>What can i do to correct this? i could add a isClosing flag and check it before updating the text but that feels like a hack and masking the problem. How do i correctly solve this?</p>
http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close/762759#7627591Answer by Samuel for C# GUI handle problems on closeSamuel2009-04-18T02:34:55Z2009-04-18T02:34:55Z<p>This is happening because the managed control is being disposed and no longer has its handle, but you haven't closed the window yet so you still see it.</p>
<p>You could create a function that would wrap the <code>Invoke</code> call and would check for <code>IsHandleCreated</code> before calling <code>Invoke</code>. If <code>IsHandleCreated</code> is false, you cannot call <code>Invoke</code> and you can just ignore the call.</p>
<pre><code>public static class ControlExtensions
{
public static TResult InvokeEx<TControl, TResult>(this TControl control,
Func<TControl, TResult> func)
where TControl : Control
{
if (!control.IsHandleCreated)
return default(T);
if (control.InvokeRequired)
return (TResult)control.Invoke(func, control);
else
return func(control);
}
public static void InvokeEx<TControl>(this TControl control,
Action<TControl> action)
where TControl : Control
{
control.InvokeEx(c => { action(c); return c; });
}
}
</code></pre>
<p>So now just wrap any <code>Invoke</code>s from your threads with <code>InvokeEx</code> and it will handle when a control has been disposed and no longer has a handle.</p>
<pre><code>this.InvokeEx(c => c.label1.Text = "Hello world");
</code></pre>
http://stackoverflow.com/questions/762742/c-gui-handle-problems-on-close/762773#7627731Answer by Bob Nadler for C# GUI handle problems on closeBob Nadler2009-04-18T02:42:43Z2009-04-18T02:42:43Z<p>I agree with Samuel, but would also check <code>IsDisposed</code>:</p>
<pre><code>void Handler()
{
if (ctrl.IsDisposed || !ctrl.IsHandleCreated) return;
if (ctrl.InvokeRequired)
Invoke(...);
else {
...
}
}
</code></pre>