AppWindow.Show Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Show() |
Shows the window and activates it. |
Show(Boolean) |
Shows the window with an option to activate it or not. |
Show()
Shows the window and activates it.
public:
virtual void Show() = Show;
/// [Windows.Foundation.Metadata.Overload("Show")]
void Show();
[Windows.Foundation.Metadata.Overload("Show")]
public void Show();
function show()
Public Sub Show ()
- Attributes
See also
Applies to
Show(Boolean)
Shows the window with an option to activate it or not.
public:
virtual void Show(bool activateWindow) = Show;
/// [Windows.Foundation.Metadata.Overload("ShowWithActivation")]
void Show(bool const& activateWindow);
[Windows.Foundation.Metadata.Overload("ShowWithActivation")]
public void Show(bool activateWindow);
function show(activateWindow)
Public Sub Show (activateWindow As Boolean)
Parameters
- activateWindow
-
Boolean
bool
true
to activate the window; otherwise, false
.
- Attributes