I've done some research and I can't really find a preferred way to do updating of form controls from a worker thread in C#. I know about the BackgroundWorker component, but what is the best way to do it without using the BackgroundWorker component?
|
2
|
|
|
|
|
|
There's a general rule of thumb that says don't update the UI from any thread other than the UI thread itself. Using the features of the BackgroundWorker is a good idea, but you don't want to and something is happening on a different thread, you should do an "Invoke" or BeginInvoke to force the delegate to execute the method on the UI thread. Edit: Jon B made this good point in the comments:
Some simple example code:
The code above is from a FAQ about it here and a longer more involved one here. |
||||||||||
|
|
|
Why dont you want to do it using the BackgroundWorker? It has a fantastic callback event called ProgressChanged which lets the UI thread know about updates, perfect for progess bar-type updates and the like. |
||
|
|
|
|
There's a discussion related to this here and one here. Essentially, you use Invoke to accomplish it. Best of luck! |
||
|
|
|
|
I would also consider InvokeRequired (VS2008 only) when calling Invoke. There are times that you will not be updating the UI from a seperate thread. It saves the overhead of creating the delegate etc.
|
||
|
|
