Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This example shows how to open a window.
Example
A window is opened by instantiating Window and calling the Show method. Show opens a window and returns immediately without waiting for the new window to close. This type of window is also known as a modeless window, and doesn't restrict user input.
CustomWindow window = new CustomWindow();
window.Show(); // Returns immediately
Security
Instantiating Window requires permission to call unsafe native methods (see Window).