Click or drag to resize

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
)

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