[][src]Macro native_windows_gui::nwg_radiobutton

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

Sane defaults for the RadioButton control. Requires a parent.

Defaults:
• text: ""
• position: (0, 0)
• size: (100, 30)
• visible: true
• disabled: false
• checkstate: CheckState::Unchecked
• font: None

Usage:
nwg_radiobutton!(parent="MyParent";)
nwg_radiobutton!(parent="MyParent"; visible=false; size=(10, 10))
nwg_radiobutton!(parent="MyParent"; \* Any combinations of the template properties*\)