Trait native_windows_gui::Control [] [src]

pub trait Control {
    fn handle(&self) -> AnyHandle;

    fn free(&mut self) { ... }
}

Structures implementing this trait are controls that can be stored in a Ui

Required Methods

Should return the underlying handle to the object

Provided Methods

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

Implementors