From what I've found in C#, the Control.Invoke method requires that you use a delegate with no input parameters. Is there any way around this? I would like to invoke a method to update the UI from another thread and pass to string parameters to it.
|
Which version of C# are you using? If you are using C#3.5 you can use closures to avoid passing in parameters. With C#3.5
Safely invoking code now becomes trivial.
With C#2.0 it becomes less trivial
Using it simple, but you have to define more callbacks for more parameters.
|
|||
|
|
|
As Luke says, use Control.Invoke like this... For example in a form:
In the contructor:
Then the MessagesIn function to receive data:
Then to pass data to your form:
|
|||
|
|
|
Some more possibilities:
or
or even
where the first option is the best one, because MethodInvoker is concepted for that purposes and has a better performance. |
||||
|
|
|
I think Samuel's (excellent) approach can be pushed even more: Extension Method:
Form code:
|
|||
|
|
|
Found an elegant method for .net 2.0 with anonymous methods wrapped in a MethodInvoker Delegate. That way is no need to define own delegates all the time. Example:
|
|||
|
|
|
Why not
|
|||
|
|