Struct native_windows_gui::Window [] [src]

pub struct Window { /* fields omitted */ }

A window control.

Methods

impl Window
[src]

Close the window as if the user clicked on the X button. This do NOT remove the window from the ui, it only set it hidden. In order to also destroy the window, add an unpack statement on the Closed event.

Activate the window and set it above the other windows

Trait Implementations

impl Control for Window
[src]

Should return the underlying handle to the object

Should return the type of the control. For custom controls, the return value should be Undefined (the default).

If specified, should free any ressource allocated in the template build function. This includes functions like DestroyWindow.