[][src]Struct native_windows_gui::ListBoxT

pub struct ListBoxT<D: Clone + Display + 'static, ID: Hash + Clone> {
    pub collection: Vec<D>,
    pub position: (i32, i32),
    pub size: (u32, u32),
    pub visible: bool,
    pub disabled: bool,
    pub readonly: bool,
    pub multi_select: bool,
    pub parent: ID,
    pub font: Option<ID>,
}

Template that creates a listbox control

Available events:
Event::Destroyed, Event::SelectionChanged, Event::DoubleClick, Event::Focus, Event::Moved, Event::Resized, Event::Raw

Members:
collection: Item collection of the listbox. The item type must implement Display
position: The start position of the listbox
size: The start size of the listbox
visible: If the listbox should be visible to the user
disabled: If the user can or can't use the listbox
readonly : If true, the user won't be able to select items in the listbox
multi_select: If true, allow the user to select more than one item
parent: The listbox parent
font: The listbox font. If None, use the system default

Fields

collection: Vec<D>position: (i32, i32)size: (u32, u32)visible: booldisabled: boolreadonly: boolmulti_select: boolparent: IDfont: Option<ID>

Trait Implementations

impl<D: Clone + Display + 'static, ID: Hash + Clone> ControlT<ID> for ListBoxT<D, ID>[src]

impl<D: Clone + Clone + Display + 'static, ID: Clone + Hash + Clone> Clone for ListBoxT<D, ID>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl<D, ID> Send for ListBoxT<D, ID> where
    D: Send,
    ID: Send

impl<D, ID> Sync for ListBoxT<D, ID> where
    D: Sync,
    ID: Sync

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]