Window.Close 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.
Closes the application window.
public:
virtual void Close() = Close;
void Close();
public void Close();
function close()
Public Sub Close ()
Remarks
UWP app typically use a single Window instance, and do not open and close additional Window instances. Additionally, you will not typically provide custom UI to enable users to close the app window.
The Closed event occurs when a Window closes.