| WindowShow Method |
Opens a window and returns without waiting for the newly opened window to close.
Namespace: DigitalRune.Game.UI.ControlsAssembly: DigitalRune.Game.UI (in DigitalRune.Game.UI.dll) Version: 1.8.0.0 (1.8.0.14553)
Syntax public void Show(
UIControl owner
)
Public Sub Show (
owner As UIControl
)
public:
void Show(
UIControl^ owner
)
member Show :
owner : UIControl -> unit
Parameters
- owner
- Type: DigitalRune.Game.UI.ControlsUIControl
The owner of this window. If this window is closed, the focus moves back to the owner. Must
not be .
Exceptions Remarks
The window is added to the
UIScreen of the
owner
(unless it was already added to a screen) and activated (see
Activate).
DialogResult is reset to
.
See Also