Struct native_windows_gui::custom::SysclassParams [] [src]

pub struct SysclassParams<S: Into<String>> {
    pub class_name: S,
    pub sysproc: WNDPROC,
    pub background: Option<HBRUSH>,
    pub style: Option<u32>,
}

Params used to build a system class

Members:
class_name: System class name
sysproc: The system class procedure
background: If specified, the background color of the created window
style: System class style

Fields