ApplicationInvoke Method (Action) |
Invoke the specified action on the UI thread, blocking the current execution until it is complete.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public virtual void Invoke(
Action action
)
Public Overridable Sub Invoke (
action As Action
)
abstract Invoke :
action : Action -> unit
override Invoke :
action : Action -> unit
Parameters
- action
- Type: SystemAction
Action to invoke
Remarks
Use this method when you want to perform changes to the UI from a worker thread, and return when
the changes are complete.
See Also