up vote 69 down vote favorite
34
share [g+] share [fb]

I have a scenario. (Windows Forms, C#, .NET)

  1. There is a main form which hosts some user control.
  2. The user control does some heavy data operation, such that if I directly call the Usercontrol_Load method the UI become nonresponsive for the duration for load method execution.
  3. To overcome this I load data on different thread (trying to change existing code as little as I can)
  4. I used a background worker thread which will be loading the data and when done will notify the application that it has done its work.
  5. Now came a real problem. All the UI (main form and its child usercontrols) was created on the primary main thread. In the LOAD method of the usercontrol I'm fetching data based on the values of some control (like textbox) on userControl.

The pseudocode would look like this:

//CODE 1

UserContrl1_LOadDataMethod()
{

    if(textbox1.text=="MyName") <<======this gives exception
    {
        //Load data corresponding to "MyName".
        //Populate a globale variable List<string> which will be binded to grid at some later stage.
    }
}

The Exception it gave was Cross-thread operation not valid: Control accessed from a thread other than the thread it was created on.

To know more about this I did some googling and a suggestion came up like using the following code

//CODE 2

UserContrl1_LOadDataMethod()
{
    if(InvokeRequired) // Line #1
    {

        this.Invoke(new MethodInvoker(UserContrl1_LOadDataMethod));
        return;
    }

    if(textbox1.text=="MyName") //<<======Now it wont give exception**
    {
    //Load data correspondin to "MyName"
        //Populate a globale variable List<string> which will be binded to grid at some later stage
    }
}

BUT BUT BUT... it seems I'm back to square one. The Application again become nonresponsive. It seems to be due to the execution of line #1 if condition. The loading task is again done by the parent thread and not the third that I spawned.

I don't know whether I perceived this right or wrong. I'm new to threading.

How do I resolve this and also what is the effect of execution of Line#1 if block?

The situation is this: I want to load data into a global variable based on the value of a control. I don't want to change the value of a control from the child thread. I'm not going to do it ever from a child thread.

So only accessing the value so that the corresponding data can be fetched from the database.

link|improve this question

55% accept rate
UserContrl1_LOadDataMethod: Please fix the capital O. – jmucchiello Dec 28 '09 at 15:50
feedback

protected by Community Jul 4 '11 at 13:10

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

8 Answers

up vote 62 down vote accepted

[EDIT] As per SilverHorse's update comment, the solution you want then should look like:

UserContrl1_LOadDataMethod()
{
    string name = "";
    if(textbox1.InvokeRequired)
    {
        textbox1.Invoke(new MethodInvoker(delegate { name = textbox1.text; }));
    }
    if(name == "MyName")
    {
        // do whatever
    }
}

Do your serious processing in the separate thread before you attempt to switch back to the control's thread. For example:

UserContrl1_LOadDataMethod()
{
    if(textbox1.text=="MyName") //<<======Now it wont give exception**
    {
        //Load data correspondin to "MyName"
        //Populate a globale variable List<string> which will be
        //bound to grid at some later stage
        if(InvokeRequired)
        {
            // after we've done all the processing, 
            this.Invoke(new MethodInvoker(delegate {
                // load the control with the appropriate data
            }));
            return;
        }
    }
}
link|improve this answer
2  
SilverHorse, does the code work, or did you just accept this answer because it has code? – Lasse V. Karlsen Oct 21 '08 at 14:51
Also Jon's answer has helped me .Pls see comments in the answer. – SilverHorse Apr 7 '09 at 14:49
feedback

You only want to use Invoke or BeginInvoke for the bare minimum piece of work required to change the UI. Your "heavy" method should execute on another thread (e.g. via BackgroundWorker) but then using Control.Invoke/Control.BeginInvoke just to update the UI. That way your UI thread will be free to handle UI events etc.

See my threading article for a WinForms example - although the article was written before BackgroundWorker arrived on the scene, and I'm afraid I haven't updated it in that respect. BackgroundWorker merely simplifies the callback a bit.

link|improve this answer
here in this condition of mine . i m not even changing the UI. I m just accessig its current values from the child thread. any suggestion hw to implement – SilverHorse Sep 26 '08 at 21:26
You still need to marshal over to the UI thread even just to access properties. If your method can't continue until the value is accessed, you can use a delegate which returns the value. But yes, go via the UI thread. – Jon Skeet Sep 26 '08 at 21:38
Hi Jon, i belive you are heading me to the right direction. Yes i need the value without it i cant proceed further. Please could you eloborate on that ' Using a delegate which return a value'. Thanks – SilverHorse Sep 26 '08 at 21:46
Use a delegate such as Func<string>: string text = textbox1.Invoke((Func<string>) () => textbox1.Text); (That's assuming you're using C# 3.0 - you could use an anonymous method otherwise.) – Jon Skeet Sep 26 '08 at 21:49
feedback

Use the code found here on StackOverflow to eliminate the need to write a new delegate every time you want to call Invoke.

link|improve this answer
feedback

I have had this problem with the FileSystemWatcher and found that the following code solved the problem:

fsw.SynchronizingObject = this

The control then uses the current form object to deal with the events, and will therefore be on the same thread.

link|improve this answer
This was incredibly helpful. Fixed my code in one line! – jcollum Apr 8 '10 at 20:29
DUDE, I LOVE YOU! fixed my code in one line [2]. +1 – Marcelo Jan 21 '11 at 18:22
feedback

You need to look at the Backgroundworker example:
http://msdn.microsoft.com/en-us/library/system.componentmodel.backgroundworker.aspx Especially how it interacts with the UI layer. Based on your posting, this seems to answer your issues.

link|improve this answer
feedback

The cleanest (and proper) solution for UI cross-threading issues is to use SynchronizationContext, see Synchronizing calls to the UI in a multi-threaded application article, it explains it very nicely.

link|improve this answer
feedback

Controls in .NET are not generally thread safe. That means you shouldn't access a control from a thread other than the one where it lives. To get around this, you need to invoke the control, which is what your 2nd sample is attempting.

However, in your case all you've done is pass the long-running method back to the main thread. Of course, that's not really what you want to do. You need to rethink this a little so that all you're doing on the main thread is setting a quick property here and there.

link|improve this answer
feedback

For anyone else that is dealing with this issue, take a look at this article.

I found it really interesting and it works quite well.

link|improve this answer
feedback

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