[][src]Macro native_windows_gui::nwg_window

macro_rules! nwg_window {
    ( $( $i:ident=$v:expr );* ) => { ... };
}

Sane defaults for the Window control.

Defaults:
• title: "Native Windows GUI"
• position: (100, 100)
• size: (800, 600)
• resizable: false
• visible: true
• disabled: false
• exit_on_close: true

Usage:
nwg_window!()
nwg_window!(visible=false; resizable=true)
nwg_window!(\* Any combinations of the template properties*\)