public native show() as Void
Shows the window and asks the operating system to place it in the foreground with keyboard focus.
The activation request is made only by an explicit show() or run(); repaint and layout operations never steal focus from another application. If the platform forbids foreground activation, its native attention mechanism is used instead.
window = MainWindow("Dashboard")
window.show()