Click or drag to resize

WindowOwner Property

Gets or sets the owner of this window.

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public Window Owner { get; set; }

Property Value

Type: Window
The owner of this window.
Remarks
This sets the parent window that has ownership over this window. For a Dialog, this will be the window that will be disabled while the modal dialog is shown. With a Form, the specified owner will always be below the current window when shown, and will still be responsive to user input. Typically, but not always, the window will move along with the owner.
See Also