Window:show()method


Show and activate the Window (events can now be fired).

Return value

This function returns no value.

Example

--! luart-extensions import ui -- create a simple window local win = ui.Window("Simple Window") -- shows the Window win:show() -- wait for 2sec before quitting sleep(2000)