I have become painfully aware of just how often one needs to write the following code pattern in event-driven GUI code, where

private void DoGUISwitch() {

    // cruisin for a bruisin' through exception city
    object1.Visible = true;
    object2.Visible = false;

}

becomes

private void DoGUISwitch() {

    if (object1.InvokeRequired) {

        object1.Invoke(new MethodInvoker(() => { DoGUISwitch(); }));

    } else {

        object1.Visible = true;
        object2.Visible = false;

    }
}

This is an awkward pattern in C#, both to remember, and to type. Has anyone come up with some sort of shortcut or construct that automates this to a degree? It'd be cool if there was a way to attach a function to objects that does this check without having to go through all this extra work, like a object1.InvokeIfNecessary.visible = true type shortcut.

Previous answers have discussed the impracticality of just calling Invoke() every time, and even then the Invoke() syntax is both inefficient and still awkward to deal with.

So, has anyone figured out any shortcuts?

link|improve this question

2  
I've wondered the same thing, but in regards to WPF's Dispatcher.CheckAccess(). – Taylor Leese Mar 2 '10 at 23:35
A friend of mine pointed this out: manitra.net/blog/dev/invokerequiredinvoke-easier – Tom the Junglist Mar 2 '10 at 23:43
I thought up a rather crazy suggestion inspired by your object1.InvokeIfNecessary.Visible = true line; check out my updated answer and let me know what you think. – Dan Tao Mar 3 '10 at 0:05
1  
Add a Snippet to help implement method suggested by Matt Davis: see my answer (late but just showing how for later readers ;-) ) – Aaron Gage Feb 15 '11 at 13:40
feedback

3 Answers

up vote 54 down vote accepted

You could write an extension method:

public static void InvokeIfRequired(this Control c, Action<Control> action)
{
    if(c.InvokeRequired)
    {
        c.Invoke(new Action(() => action(c)));
    }
    else
    {
        action(c);
    }
}

And use it like this:

object1.InvokeIfRequired(c => { c.Visible = true; });

EDIT: As Simpzon points out in the comments you could also change the signature to:

public static void InvokeIfRequired<T>(this T c, Action<T> action) 
    where T : Control
link|improve this answer
3  
That's a nice trick. I'm definitely stealing it. – Jonathan Allen Mar 2 '10 at 23:43
Very nice indeed. – Ian Apr 20 '10 at 14:49
Maybe i'm just too dumb, but this code won't compile. So i fixed it as it built by me (VS2008). – Oliver Nov 18 '10 at 10:02
1  
Just for completeness: In WPF there is a different dispatching mechanism, but it works rather analogous. You could use this extension method there: public static void InvokeIfRequired<T>(this T aTarget, Action<T> aActionToExecute) where T:DispatcherObject { if (aTarget.CheckAccess()) { aActionToExecute(aTarget); } else { aTarget.Dispatcher.Invoke(aActionToExecute); } } – Simon D. Nov 18 '10 at 13:16
feedback

Here's the form I've been using in all my code.

private void DoGUISwitch()
{ 
    Invoke( ( MethodInvoker ) delegate {
        object1.Visible = true;
        object2.Visible = false;
    }
} 

I've based this on the blog entry here. I have not had this approach fail me, so I see no reason to complicate my code with a check of the InvokeRequired property.

Hope this helps.

link|improve this answer
+1 - I stumbled on the the same blog entry you did, and think this is the cleanest approach of any proposed – Tom Bushell Apr 20 '10 at 19:27
There is a small performance hit using this approach, which could pile up when called multiple times. stackoverflow.com/a/747218/724944 – surfen Nov 29 '11 at 12:05
feedback

Create a ThreadSafeInvoke.snippet file, and then you can just select the update statements, right click and select 'Surround With...' or Ctrl-K+S:

<?xml version="1.0" encoding="utf-8" ?>
<CodeSnippet Format="1.0.0" xmlns="http://schemas.microsoft.com/VisualStudio/2005/CodeSnippet">
  <Header>
    <Title>ThreadsafeInvoke</Title>
    <Shortcut></Shortcut>
    <Description>Wraps code in an anonymous method passed to Invoke for Thread safety.</Description>
    <SnippetTypes>
      <SnippetType>SurroundsWith</SnippetType>
    </SnippetTypes>
  </Header>
  <Snippet>
    <Code Language="CSharp">
      <![CDATA[
      Invoke( (MethodInvoker) delegate
      {
          $selected$
      });      
      ]]>
    </Code>
  </Snippet>
</CodeSnippet>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.