Struct winsafe::gui::Label[][src]

pub struct Label(_);
Expand description

Native label control.

Implements Child trait.

Implementations

Instantiates a new Label object, to be created on the parent window with HWND::CreateWindowEx.

Instantiates a new CheckBox object, to be loaded from a dialog resource with HWND::GetDlgItem.

Returns the underlying handle for this control.

Note: the handle is initially null, receiving an actual value only after the control is physically created, what usually happens right before WM_CREATE or WM_INITDIALOG events.

Returns the control ID.

Exposes the subclass events. If at least one event exists, the control will be subclassed.

Note: Subclassing may impact performance, use with care.

Panics

Panics if the control or the parent window are already created. Events must be set before control and parent window creation.

Exposes the control events.

These event methods are just proxies to the WindowEvents of the parent window, who is the real responsible for the child event handling.

Panics

Panics if the control or the parent window are already created. Events must be set before control and parent window creation.

Resizes the control to exactly fit current text.

Sets the text by calling SetWindowText.

Examples

use winsafe::gui;

let my_label: gui::Label; // initialized somewhere

my_label.set_text("This my text")?;

Calls set_text and resizes the control to exactly fit the new text.

Examples

use winsafe::gui;

let my_label: gui::Label; // initialized somewhere

my_label.set_text_and_resize("This my text")?;

Retrieves the text in the control by calling HWND::GetWindowText.

Examples

use winsafe::gui;

let my_label: gui::Label; // initialized somewhere

println!("The text is: {}", my_label.text()?);

Trait Implementations

Returns a reference to the HWND of the child control.

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.