[][src]Macro native_windows_gui::nwg_filedialog

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

Sane defaults for the FileDialog control.

Defaults:
• parent: None
• title: "Open file"
• action: FileDialogAction::Open
• multiselect: false
• default_folder: None
• filters: None

Usage:
nwg_filedialog!()
nwg_filedialog!(parent="MyParent"; title="Hey buddy!")
nwg_filedialog!(\* Any combinations of the template properties*\)