DialogShowModal Method (Control) |
Shows the dialog modally, blocking the current thread until it is closed.
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax public void ShowModal(
Control owner
)
Public Sub ShowModal (
owner As Control
)
member ShowModal :
owner : Control -> unit
Parameters
- owner
- Type: Eto.FormsControl
The owner control that is showing the form
Remarks
The
owner specifies the control on the window that will be blocked from user input until
the dialog is closed.
Calling this method is identical to setting the
Owner property and calling
ShowModal.
See Also