| WindowIsModal Property |
Gets or sets a value indicating whether this window is a modal dialog.
This is a game object property.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public bool IsModal { get; set; }
Public Property IsModal As Boolean
Get
Set
public:
property bool IsModal {
bool get ();
void set (bool value);
}
member IsModal : bool with get, set
Property Value
Type:
Boolean if this window is a modal dialog; otherwise,
.
Remarks
A modal window blocks all input from windows that are behind the modal window. The user must
close the modal window before he/she can interact with the other windows. The default value
is .
See Also