DialogDisplayMode Enumeration |
Hint to tell the platform how to display the dialog
Namespace:
Eto.Forms
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax [FlagsAttribute]
public enum DialogDisplayMode
<FlagsAttribute>
Public Enumeration DialogDisplayMode
[<FlagsAttribute>]
type DialogDisplayMode
Members
| Member name | Value | Description |
---|
| Default | 0 |
The default display mode for modal dialogs in the platform
|
| Attached | 1 |
Display the dialog attached to the owner window, if supported (e.g. OS X)
|
| Separate | 2 |
Display the dialog as a separate window (e.g. Windows/Linux only supports this mode)
|
| Navigation | 4 |
Display in navigation if available
|
Remarks
This tells the platform how you prefer to display the dialog. Each platform
may support only certain modes and will choose the appropriate mode based on the hint
given.
See Also