xtd 1.0.0
Loading...
Searching...
No Matches
xtd::forms::track_bar Class Reference
Inheritance diagram for xtd::forms::track_bar:
xtd::forms::control xtd::forms::component xtd::forms::iwin32_window xtd::icomparable< control > xtd::iequatable< control > xtd::isynchronize_invoke xtd::object xtd::interface xtd::interface xtd::extensions::comparison_operators< control, icomparable< control > > xtd::interface xtd::extensions::equality_operators< control, iequatable< control > > xtd::interface

Definition

Represents a standard Windows track bar.

Header
#include <xtd/forms/track_bar>
Namespace
xtd::forms
Library
xtd.forms
Remarks
The track_bar is a scrollable control similar to the scroll_bar control. You can configure ranges through which the value of the value property of a track bar scrolls by setting the minimum property to specify the lower end of the range and the maximum property to specify the upper end of the range.
The large_change property defines the increment to add or subtract from the value property when clicks occur on either side of the scroll box. The track bar can be displayed horizontally or vertically.
You can use this control to input numeric data obtained through the value property. You can display this numeric data in a control or use it in code.
Appearance
Windows macOS Gnome
Light
Dark
Examples
The following code example demonstrates the use of track_bar control.
#include <xtd/xtd>
class form1 : public form {
public:
form1() {
client_size({300, 300});
text("Track bar example");
progress_bar1.location({120, 50});
progress_bar1.maximum(200);
progress_bar1.orientation(forms::orientation::vertical);
progress_bar1.parent(*this);
progress_bar1.height(200);
label1.location({160, 50});
label1.parent(*this);
track_bar1.location({50, 50});
track_bar1.maximum(200);
track_bar1.auto_size(false);
track_bar1.orientation(forms::orientation::vertical);
track_bar1.parent(*this);
track_bar1.value_changed += delegate_ {
progress_bar1.value(track_bar1.value());
label1.text(string::format("{}", track_bar1.value()));
};
track_bar1.value(100);
track_bar1.tick_style(forms::tick_style::none);
track_bar1.height(200);
}
private:
track_bar track_bar1;
progress_bar progress_bar1;
label label1;
};
auto main() -> int {
application::run(form1 {});
}
friend class form
The form data allows you to specify the box of a form control.
Definition control.hpp:1854
virtual auto text() const noexcept -> const xtd::string &
Gets the text associated with this control.
virtual auto client_size() const noexcept -> const xtd::drawing::size &
Gets the height and width of the client area of the control.
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:1018
xtd::forms::style_sheets::control label
The label data allows you to specify the box of a label control.
Definition label.hpp:25
@ vertical
The control or element is oriented vertically.
Definition orientation.hpp:26

Public Events

event< track_bar, event_handlerscroll
 Occurs when either a mouse or keyboard action moves the scroll box.
event< track_bar, event_handlervalue_changed
 Occurs when the value property of a track bar changes, either by movement of the scroll box or by manipulation in code.

Public Constructors

 track_bar ()
 Initializes a new instance of the track_bar class.

Public Properties

virtual int32 large_change () const noexcept
 Gets a value to be added to or subtracted from the value property when the scroll box is moved a large distance.
virtual track_barlarge_change (int32 large_change)
 Sets a value to be added to or subtracted from the value property when the scroll box is moved a large distance.
virtual int32 maximum () const noexcept
 Gets the upper limit of the range this track_bar is working with.
virtual track_barmaximum (int32 maximum)
 sets the upper limit of the range this track_bar is working with.
virtual int32 minimum () const noexcept
 Gets the lower limit of the range this track_bar is working with.
virtual track_barminimum (int32 minimum)
 Sets the lower limit of the range this track_bar is working with.
virtual forms::orientation orientation () const noexcept
 Gets a value indicating the horizontal or vertical orientation of the track bar.
virtual track_barorientation (forms::orientation orientationorientation)
 Sets a value indicating the horizontal or vertical orientation of the track bar.
virtual int32 small_change () const noexcept
 Gets he value added to or subtracted from the Value property when the scroll box is moved a small distance.
virtual track_barsmall_change (int32 small_change)
 Sets the value added to or subtracted from the Value property when the scroll box is moved a small distance.
virtual int32 tick_frequency () const noexcept
 Gets a value that specifies the delta between ticks drawn on the control.
virtual track_bartick_frequency (int32 tick_frequency)
 Sets a value that specifies the delta between ticks drawn on the control.
virtual forms::tick_style tick_style () const noexcept
 Gets a value indicating how to display the tick marks on the track bar.
virtual track_bartick_style (forms::tick_style tick_styletick_style)
 Sets a value indicating how to display the tick marks on the track bar.
virtual int32 value () const noexcept
 Gets a numeric value that represents the current position of the scroll box on the track bar.
virtual track_barvalue (int32 value)
 Sets a numeric value that represents the current position of the scroll box on the track bar.

Public Methods

void set_range (int32 min_value, int32 max_value)
 Sets the minimum and maximum values for a xtd::forms::track_bar.
xtd::string to_string () const noexcept override
 Returns a string that represents the track_bar control.

Public Static Methods

static track_bar create ()
 A factory to create an xtd::forms::track_bar.
static track_bar create (const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified location.
static track_bar create (const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified location, and size.
static track_bar create (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified location, size, and name.
static track_bar create (int32 value)
 A factory to create an xtd::forms::track_bar with specified value.
static track_bar create (int32 value, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified value, and location.
static track_bar create (int32 value, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified value, location, and size.
static track_bar create (int32 value, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified value, location, size, and name.
static track_bar create (int32 value, int32 maximum)
 A factory to create an xtd::forms::track_bar with specified value, and maximum.
static track_bar create (int32 value, int32 maximum, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, and location.
static track_bar create (int32 value, int32 maximum, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified value, maximum, location, and size.
static track_bar create (int32 value, int32 maximum, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified value, maximum, location, size, and name.
static track_bar create (int32 value, int32 minimum, int32 maximum)
 A factory to create an xtd::forms::track_bar with specified value, minimum, and maximum.
static track_bar create (int32 value, int32 minimum, int32 maximum, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, and location.
static track_bar create (int32 value, int32 minimum, int32 maximum, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, location, and size.
static track_bar create (int32 value, int32 minimum, int32 maximum, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, location, size, and name.
static track_bar create (const control &parent)
 A factory to create an xtd::forms::track_bar with specified parent.
static track_bar create (const control &parent, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified parent, and location.
static track_bar create (const control &parent, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified parent, location, and size.
static track_bar create (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified parent, location, size, and name.
static track_bar create (const control &parent, int32 value)
 A factory to create an xtd::forms::track_bar with specified parent, and value.
static track_bar create (const control &parent, int32 value, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified parent, value, and location.
static track_bar create (const control &parent, int32 value, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified parent, value, location, and size.
static track_bar create (const control &parent, int32 value, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified parent, value, location, size, and name.
static track_bar create (const control &parent, int32 value, int32 maximum)
 A factory to create an xtd::forms::track_bar with specified parent, value, and maximum.
static track_bar create (const control &parent, int32 value, int32 maximum, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified parent, value, maximum, and location.
static track_bar create (const control &parent, int32 value, int32 maximum, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified parent, value, maximum, location, and size.
static track_bar create (const control &parent, int32 value, int32 maximum, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified parent, value, maximum, location, size, and name.
static track_bar create (const control &parent, int32 value, int32 minimum, int32 maximum)
 A factory to create an xtd::forms::track_bar with specified parent, value, minimum, and maximum.
static track_bar create (const control &parent, int32 value, int32 minimum, int32 maximum, const drawing::point &location)
 A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, and location.
static track_bar create (const control &parent, int32 value, int32 minimum, int32 maximum, const drawing::point &location, const drawing::size &size)
 A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, location, and size.
static track_bar create (const control &parent, int32 value, int32 minimum, int32 maximum, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, location, size, and name.

Protected Properties

forms::create_params create_params () const noexcept override
 Gets the required creation parameters when the control handle is created.
drawing::size default_size () const noexcept override
 Gets the default size of the control.

Protected Methods

void on_handle_created (const event_args &e) override
 Overrides control::on_handle_created(const event_args&).
virtual void on_scroll (const event_args &e)
 Raises the track_bar::scroll event.
virtual void on_value_changed (const event_args &e)
 Raises the track_bar::value_changed event.
void set_bounds_core (int32 x, int32 y, int32 width, int32 height, bounds_specified specified) override
 Performs the work of setting the specified bounds of this control.
void set_client_size_core (int32 width, int32 height) override
 Sets the size of the client area of the control.
void wnd_proc (message &message) override
 Processes Windows messages.

Additional Inherited Members

using context_menu_ref
 Represent an xtd::forms::context_menu reference.
xtd::event< control, xtd::event_handlerauto_size_changed
 Occurs when the value of the xtd::forms::control::auto_size property changes.
xtd::event< control, xtd::event_handlerback_color_changed
 Occurs when the value of the xtd::forms::control::back_color property changes.
xtd::event< control, xtd::event_handlerbackground_image_changed
 Occurs when the value of the xtd::forms::control::background_image property changes.
xtd::event< control, xtd::event_handlerbackground_image_layout_changed
 Occurs when the value of the xtd::forms::control::background_image_layout property changes.
xtd::event< control, xtd::event_handlercontrol_appearance_changed
 Occurs when the value of the xtd::forms::control::control_appearance property changes.
xtd::event< control, xtd::event_handlerclick
 Occurs when the xtd::forms::control is clicked.
xtd::event< control, xtd::event_handlerclient_size_changed
 Occurs when the value of the xtd::forms::control::client_size property changes.
xtd::event< control, xtd::event_handlercursor_changed
 Occurs when the value of the xtd::forms::control::cursor property changes.
xtd::event< control, xtd::forms::control_event_handlercontrol_added
 Occurs when a new xtd::forms::control::control is added to the xtd::forms::control::control_collection.
xtd::event< control, xtd::forms::control_event_handlercontrol_removed
 Occurs when a new xtd::forms::control:: is removed to the xtd::forms::control::control_collection.
xtd::event< control, xtd::event_handlerdock_changed
 Occurs when the value of the xtd::forms::control::dock property changes.
xtd::event< control, xtd::event_handlerdouble_click
 Occurs when the xtd::forms::control is double-clicked.
xtd::event< control, xtd::event_handlergot_focus
 Occurs when the xtd::forms::control receives focus.
xtd::event< control, xtd::event_handlerhandle_created
 Occurs when a handle is created for the xtd::forms::control.
xtd::event< control, xtd::event_handlerhandle_destroyed
 Occurs when the control's handle is in the process of being destroyed.
xtd::event< control, xtd::event_handlerenabled_changed
 Occurs when the value of the xtd::forms::control::enabled property changes.
xtd::event< control, xtd::event_handlerfore_color_changed
 Occurs when the value of the xtd::forms::control::fore_color property changes.
xtd::event< control, xtd::event_handlerfont_changed
 Occurs when the value of the xtd::forms::control::font property changes.
xtd::event< control, xtd::forms::help_event_handlerhelp_requested
 Occurs when the user requests help for a xtd::forms::control.
xtd::event< control, xtd::forms::key_event_handlerkey_down
 Occurs when a key is pressed while the xtd::forms::control has focus.
xtd::event< control, xtd::forms::key_press_event_handlerkey_press
 Occurs when a character. space or backspace key is pressed while the xtd::forms::control has focus.
xtd::event< control, xtd::forms::key_event_handlerkey_up
 Occurs when a key is released while the xtd::forms::control has focus.
xtd::event< control, xtd::event_handlerlayout
 Occurs when a xtd::forms::control should reposition its child controls.
xtd::event< control, xtd::event_handlerlocation_changed
 Occurs when the value of the xtd::forms::control::location property changes.
xtd::event< control, xtd::event_handlerlost_focus
 Occurs when the xtd::forms::control loses focus.
xtd::event< control, xtd::forms::mouse_event_handlermouse_click
 Occurs when the xtd::forms::control is clicked by the mouse.
xtd::event< control, xtd::forms::mouse_event_handlermouse_double_click
 Occurs when the xtd::forms::control is double clicked by the mouse.
xtd::event< control, xtd::forms::mouse_event_handlermouse_down
 Occurs when the mouse pointer is over the xtd::forms::control and a mouse button is pressed.
xtd::event< control, xtd::event_handlermouse_enter
 Occurs when the mouse pointer enters the xtd::forms::control.
xtd::event< control, xtd::forms::mouse_event_handlermouse_horizontal_wheel
 Occurs when the mouse horizontal wheel moves while the xtd::forms::control has focus.
xtd::event< control, xtd::event_handlermouse_leave
 Occurs when the mouse pointer leaves the xtd::forms::control.
xtd::event< control, xtd::forms::mouse_event_handlermouse_move
 Occurs when the mouse pointer is moved over the xtd::forms::control.
xtd::event< control, xtd::forms::mouse_event_handlermouse_up
 Occurs when the mouse pointer is over the xtd::forms::control and a mouse button is released.
xtd::event< control, xtd::forms::mouse_event_handlermouse_wheel
 Occurs when the mouse wheel moves while the xtd::forms::control has focus.
xtd::event< control, xtd::event_handlermove
 Occurs when the control is moved.
xtd::event< control, xtd::forms::paint_event_handlerpaint
 Occurs when the xtd::forms::control is redrawn.
xtd::event< control, xtd::event_handlerparent_changed
 Occurs when the value of the xtd::forms::control::parent property changes.
xtd::event< control, xtd::event_handlerregion_changed
 Occurs when the value of the xtd::forms::control::region property changes.
xtd::event< control, xtd::event_handlerresize
 Occurs when the xtd::forms::control is resized.
xtd::event< control, xtd::event_handlerright_to_left_changed
 Occurs when the value of the xtd::forms::control::right_to_left property changes.
xtd::event< control, xtd::event_handlersize_changed
 Occurs when the value of the xtd::forms::control::size property changes.
xtd::event< control, xtd::event_handlerstyle_sheet_changed
 Occurs when the value of the xtd::forms::control::style_sheet property changes or when xtd::application::style_sheet property changes.
xtd::event< control, xtd::event_handlersystem_colors_changed
 Occurs when the xtd::drwing::system_colors changes.
xtd::event< control, xtd::event_handlertab_stop_changed
 Occurs when the xtd::forms::control::tab_stop property value changes.
xtd::event< control, xtd::event_handlertext_changed
 Occurs when the value of the xtd::forms::control::text property changes.
xtd::event< control, xtd::event_handlervisible_changed
 Occurs when the value of the xtd::forms::control::visible property changes.
 control ()
 Initializes a new instance of the xtd::forms::control class with default settings.
 control (const xtd::string &text)
 Initializes a new instance of the xtd::forms::control class with specific text.
 control (const control &parent, const xtd::string &text)
 Initializes a new instance of the xtd::forms::control class as a child control, with specific text.
 control (const xtd::string &text, int32 left, int32 top, int32 width, int32 height)
 Initializes a new instance of the control class with specific text, size, and location.
 control (const control &parent, const xtd::string &text, int32 left, int32 top, int32 width, int32 height)
 Initializes a new instance of the xtd::forms::control class as a child control, with specific text, size, and location.
virtual auto anchor () const noexcept -> xtd::forms::anchor_styles
 Gets the edges of the container to which a control is bound and determines how a control is resized with its parent.
virtual auto anchor (xtd::forms::anchor_styles value) -> control &
 Gets the edges of the container to which a control is bound and determines how a control is resized with its parent.
virtual auto auto_scroll_point () const noexcept -> xtd::drawing::point
 Gets where this control is scrolled to in scroll_control_into_view(control).
virtual auto auto_size () const noexcept -> bool
 Gets a value that indicates whether the control resizes based on its contents.
virtual auto auto_size (bool value) -> control &
 Sets a value that indicates whether the control resizes based on its contents.
virtual auto back_color () const noexcept -> xtd::drawing::color
 Gets the background color for the control.
virtual auto back_color (const xtd::drawing::color &value) -> control &
 Sets the background color for the control.
virtual auto back_color (xtd::null_ptr) -> control &
 Resets the background color for the control.
virtual auto background_image () const noexcept -> const xtd::drawing::image &
 Gets the background image displayed in the control.
virtual auto background_image (const xtd::drawing::image &value) -> control &
 Sets the background image displayed in the control.
virtual auto background_image_layout () const noexcept -> xtd::forms::image_layout
 Gets the background image layout as defined in the xtd::forms::image_layout enumeration.
virtual auto background_image_layout (xtd::forms::image_layout value) -> control &
 Sets the background image layout as defined in the xtd::forms::image_layout enumeration.
virtual auto bottom () const noexcept -> xtd::int32
 Gets the distance, in pixels, between the bottom edge of the control and the top edge of its container's client area.
virtual auto bounds () const noexcept -> xtd::drawing::rectangle
 Gets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.
virtual auto bounds (const xtd::drawing::rectangle &value) -> control &
 Sets the size and location of the control including its nonclient elements, in pixels, relative to the parent control.
virtual auto can_focus () const noexcept -> bool
 Gets a value indicating whether the control can receive focus.
virtual auto can_select () const noexcept -> bool
 Gets a value indicating whether the control can be selected.
auto can_raise_events () const noexcept -> bool override
 Determines if events can be raised on the control.
virtual auto client_rectangle () const noexcept -> const xtd::drawing::rectangle &
 Gets the rectangle that represents the client area of the control.
virtual auto client_size () const noexcept -> const xtd::drawing::size &
 Gets the height and width of the client area of the control.
virtual auto client_size (const xtd::drawing::size &value) -> control &
 Sets the height and width of the client area of the control.
virtual auto company_name () const noexcept -> xtd::string
 Gets the name of the company or creator of the application containing the control.
virtual auto context_menu () const noexcept -> std::optional< context_menu_ref >
 Gets the xtd::forms::context_menu that is displayed in the control.
virtual auto context_menu (xtd::forms::context_menu &value) -> control &
 Sets the xtd::forms::context_menu that is displayed in the control.
virtual auto context_menu (xtd::null_ptr) -> control &
 Resets the xtd::forms::context_menu that is displayed in the control.
virtual auto control_appearance () const noexcept -> xtd::forms::control_appearance
 Gets control appearance.
virtual auto control_appearance (xtd::forms::control_appearance value) -> control &
 Sets control appearance.
virtual auto controls () noexcept -> control_collection &
 Gets the collection of controls contained within the control.
virtual auto controls () const noexcept -> const control_collection &
 Gets the collection of controls contained within the control.
virtual auto created () const noexcept -> bool
 Gets a value indicating whether the control has been created.
virtual auto cursor () const noexcept -> xtd::forms::cursor
 Gets the cursor that is displayed when the mouse pointer is over the control.
virtual auto cursor (const xtd::forms::cursor &value) -> control &
 Sets the cursor that is displayed when the mouse pointer is over the control.
virtual auto cursor (xtd::null_ptr) -> control &
 Resets the cursor that is displayed when the mouse pointer is over the control.
virtual auto display_rectangle () const noexcept -> xtd::drawing::rectangle
 Gets the rectangle that represents the display area of the control.
virtual auto dock () const noexcept -> xtd::forms::dock_style
 Gets which control borders are docked to its parent control and determines how a control is resized with its parent.
virtual auto dock (xtd::forms::dock_style value) -> control &
 Sets which control borders are docked to its parent control and determines how a control is resized with its parent.
virtual auto double_buffered () const noexcept -> bool
 Gets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.
virtual auto double_buffered (bool value) -> control &
 Sets a value indicating whether this control should redraw its surface using a secondary buffer to reduce or prevent flicker.
virtual auto enabled () const noexcept -> bool
 Gets a value indicating whether the control can respond to user interaction.
virtual auto enabled (bool value) -> control &
 Sets a value indicating whether the control can respond to user interaction.
virtual auto focused () const noexcept -> bool
 Gets a value indicating whether the control has input focus.
virtual auto font () const noexcept -> xtd::drawing::font
 Gets the font of the text displayed by the control.
virtual auto font (const xtd::drawing::font &value) -> control &
 Sets the font of the text displayed by the control.
virtual auto font (xtd::null_ptr) -> control &
 Resets the font of the text displayed by the control.
virtual auto fore_color () const noexcept -> xtd::drawing::color
 Gets the foreground color of the control.
virtual auto fore_color (const xtd::drawing::color &value) -> control &
 Sets the foreground color of the control.
virtual auto fore_color (xtd::null_ptr) -> control &
 Resets the foreground color of the control.
auto handle () const -> xtd::intptr override
 Gets the window handle that the control is bound to.
virtual auto height () const noexcept -> xtd::int32
 Gets the height of the control.
virtual auto height (xtd::int32 value) -> control &
 Sets the height of the control.
auto invoke_required () const noexcept -> bool override
 Gets a value indicating whether the caller must call an invoke method when making method calls to the control because the caller is on a different thread than the one the control was created on.
auto is_handle_created () const noexcept -> bool
 Gets a value indicating whether the control has a handle associated with it.
virtual auto left () const noexcept -> xtd::int32
 Gets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.
virtual auto left (xtd::int32 value) -> control &
 Sets the distance, in pixels, between the left edge of the control and the left edge of its container's client area.
virtual auto location () const noexcept -> xtd::drawing::point
 Gets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
virtual auto location (const xtd::drawing::point &value) -> control &
 Sets the coordinates of the upper-left corner of the control relative to the upper-left corner of its container.
virtual auto margin () const noexcept -> xtd::forms::padding
 Gets the space between controls.
virtual auto margin (const xtd::forms::padding &value) -> control &
 Sets the space between controls.
virtual auto maximum_client_size () const noexcept -> const xtd::drawing::size &
 Gets the client size that is the upper limit that xtd::forms::control::get_preferred_size can specify.
virtual auto maximum_client_size (const xtd::drawing::size &size) -> control &
 Sets the client size that is the upper limit that xtd::forms::control::get_preferred_size can specify.
virtual auto maximum_size () const noexcept -> const xtd::drawing::size &
 Gets the size that is the upper limit that xtd::forms::control::get_preferred_size can specify.
virtual auto maximum_size (const xtd::drawing::size &value) -> control &
 Sets the size that is the upper limit that xtd::forms::control::get_preferred_size can specify.
virtual auto minimum_client_size () const noexcept -> const xtd::drawing::size &
 Gets the client size that is the lower limit that xtd::forms::control::get_preferred_size can specify.
virtual auto minimum_client_size (const xtd::drawing::size &value) -> control &
 Sets the client size that is the lower limit that xtd::forms::control::get_preferred_size can specify.
virtual auto minimum_size () const noexcept -> const xtd::drawing::size &
 Gets the size that is the lower limit that xtd::forms::control::get_preferred_size can specify.
virtual auto minimum_size (const xtd::drawing::size &value) -> control &
 Sets the size that is the lower limit that xtd::forms::control::get_preferred_size can specify.
auto native_handle () const noexcept -> xtd::intptr
 Gets the native handle that the control is bound to.
virtual auto name () const noexcept -> const xtd::string &
 Gets the name of the control.
virtual auto name (const xtd::string &value) -> control &
 Sets the name of the control.
virtual auto padding () const noexcept -> xtd::forms::padding
 Gets padding within the control.
virtual auto padding (const xtd::forms::padding &value) -> control &
 Sets padding within the control.
virtual auto parent () const noexcept -> std::optional< xtd::forms::control_ref >
 Gets the parent container of the control.
virtual auto parent (const control &value) -> control &
 Sets the parent container of the control.
virtual auto parent (xtd::null_ptr) -> control &
 Resets the parent container of the control.
virtual auto product_name () const noexcept -> xtd::string
 Gets the product name of the assembly containing the control.
auto recreating_handle () const noexcept -> bool
 Gets a value indicating whether the control is currently re-creating its handle.
virtual auto region () const noexcept -> const xtd::drawing::region &
 Gets the window region associated with the control.
virtual auto region (const xtd::drawing::region &value) -> control &
 Sets the window region associated with the control.
virtual auto right () const noexcept -> xtd::int32
 Gets the distance, in pixels, between the right edge of the control and the left edge of its container's client area.
virtual auto right_to_left () const noexcept -> xtd::forms::right_to_left
 Gets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.
virtual auto right_to_left (xtd::forms::right_to_left value) -> control &
 Sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.
virtual auto right_to_left (xtd::null_ptr) -> control &
 Resets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.
virtual auto size () const noexcept -> xtd::drawing::size
 Gets the height and width of the control.
virtual auto size (const xtd::drawing::size &value) -> control &
 Sets the height and width of the control.
virtual auto style_sheet () const noexcept -> xtd::forms::style_sheets::style_sheet
 Gets the contol style sheet.
virtual auto style_sheet (const xtd::forms::style_sheets::style_sheet &value) -> control &
 Sets the contol style sheet.
virtual auto style_sheet (const xtd::string &value) -> control &
 Sets the contol style sheet.
virtual auto style_sheet (xtd::null_ptr) -> control &
 Resets the contol style sheet.
virtual auto tab_stop () const noexcept -> bool
 Gets a value indicating whether the user can give the focus to this control using the TAB key.
virtual auto tab_stop (bool value) -> control &
 Sets a value indicating whether the user can give the focus to this control using the TAB key.
virtual auto tag () const noexcept -> const xtd::any_object &
 Gets the object that contains data about the control.
virtual auto tag (const xtd::any_object &value) -> control &
 Sets the object that contains data about the control.
virtual auto text () const noexcept -> const xtd::string &
 Gets the text associated with this control.
virtual auto text (const xtd::string &value) -> control &
 Sets the text associated with this control.
auto toolkit_handle () const noexcept -> xtd::intptr
 Gets the toolkit handle that the control is bound to.
virtual auto top () const noexcept -> xtd::int32
 Gets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.
virtual auto top (xtd::int32 value) -> control &
 Sets the distance, in pixels, between the top edge of the control and the top edge of its container's client area.
virtual auto top_level_control () const noexcept -> std::optional< xtd::forms::control_ref >
 Gets the parent control that is not parented by another Windows Forms control. Typically, this is the outermost Form that the control is contained in.
virtual auto visible () const noexcept -> bool
 Gets a value indicating whether the control and all its child controls are displayed.
virtual auto visible (bool value) -> control &
 Sets a value indicating whether the control and all its child controls are displayed.
virtual auto width () const noexcept -> xtd::int32
 Gets the width of the control.
virtual auto width (xtd::int32 value) -> control &
 Sets the width of the control.
auto begin_invoke (xtd::delegate< void()> method) -> xtd::async_result override
 Executes the specified delegate asynchronously on the thread that the control's underlying handle was created on.
auto begin_invoke (xtd::delegate< void(xtd::array< xtd::any_object >)> method, const xtd::array< xtd::any_object > &args) -> xtd::async_result override
 Executes the specified delegate asynchronously with the specified arguments, on the thread that the control's underlying handle was created on.
virtual auto bring_to_front () -> void
 Brings the control to the front of the z-order.
auto compare_to (const control &value) const noexcept -> xtd::int32 override
auto create_control () -> void
 Forces the creation of the visible control, including the creation of the handle and any visible child controls.
auto create_graphics () const -> xtd::drawing::graphics
 Creates the xtd::drawing::graphics for the control.
virtual auto destroy_control () -> void
 Forces the destruction of the visible control, including the destruction of the handle and any visible child controls.
auto end_invoke (xtd::async_result async) -> std::optional< xtd::object_ref > override
 Retrieves the return value of the asynchronous operation represented by the async_result_invoke passed.
auto equals (const xtd::object &obj) const noexcept -> bool override
 Determines whether the specified object is equal to the current object.
auto equals (const control &value) const noexcept -> bool override
 Determines whether the specified object is equal to the current object.
auto focus () -> bool
 Sets input focus to the control.
auto get_auto_size_mode () const -> xtd::forms::auto_size_mode
 Gets a value indicating how a control will behave when its auto_size property is enabled.
auto get_child_index (xtd::intptr child) const -> xtd::usize
 Retrieves the index of a control within the control collection.
auto get_child_index (xtd::intptr child, bool &throw_exception) const -> xtd::usize
 Retrieves the index of the specified child control within the control collection, and optionally raises an exception if the specified control is not within the control collection.
auto get_hash_code () const noexcept -> xtd::usize override
 Serves as a hash function for a particular type.
virtual auto hide () -> void
 Conceals the control from the user.
virtual auto invalidate () const -> void
 Invalidates the entire surface of the control and causes the control to be redrawn.
virtual auto invalidate (bool invalidate_children) const -> void
 Invalidates a specific region of the control and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
virtual auto invalidate (const xtd::drawing::rectangle &rect) const -> void
 Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.
virtual auto invalidate (const xtd::drawing::rectangle &rect, bool invalidate_children) const -> void
 Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
virtual auto invalidate (const xtd::drawing::region &region) const -> void
 Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control.
virtual auto invalidate (const xtd::drawing::region &region, bool invalidate_children) const -> void
 Invalidates the specified region of the control (adds it to the control's update region, which is the area that will be repainted at the next paint operation), and causes a paint message to be sent to the control. Optionally, invalidates the child controls assigned to the control.
auto invoke (xtd::delegate< void()> method) -> std::optional< xtd::object_ref > override
 Executes the specified delegate on the thread that owns the control's underlying window handle.
auto invoke (xtd::delegate< void(xtd::array< xtd::any_object >)> method, const xtd::array< xtd::any_object > &args) -> std::optional< xtd::object_ref > override
 Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
auto invoke (xtd::delegate< void(xtd::array< xtd::any_object >)> method, const xtd::any_object &arg) -> std::optional< xtd::object_ref > override
 Executes the specified delegate, on the thread that owns the control's underlying window handle, with the specified list of arguments.
auto perform_layout () -> void
 Forces the control to apply layout logic to all its child controls.
auto point_to_client (const xtd::drawing::point &p) const -> xtd::drawing::point
 Computes the location of the specified screen point into client coordinates.
auto point_to_screen (const xtd::drawing::point &p) const -> xtd::drawing::point
 Computes the location of the specified client point into screen coordinates.
auto post_message (xtd::intptr hwnd, xtd::int32 msg, xtd::intptr wparam, xtd::intptr lparam) const -> bool
 Places (posts) a message in the message queue with specified hwnd, message, wparam and lparam.
virtual auto pre_process_message (const xtd::forms::message &message) -> bool
 Preprocesses keyboard or input messages within the message loop before they are dispatched.
virtual auto refresh () const -> void
 Forces the control to invalidate its client area and immediately redraw itself and any child controls.
auto resume_layout () -> void
 Resumes usual layout logic.
auto resume_layout (bool perform_layout) -> void
 Resumes usual layout logic, optionally forcing an immediate layout of pending layout requests.
auto send_message (xtd::intptr hwnd, xtd::int32 msg, xtd::intptr wparam, xtd::intptr lparam) const -> xtd::intptr
 Send a message with specified hwnd, message, wparam and lparam.
auto set_auto_size_mode (xtd::forms::auto_size_mode auto_size_modeauto_size_mode) -> void
 Sets a value indicating how a control will behave when its auto_size property is enabled.
auto set_bounds (xtd::int32 x, xtd::int32 y, xtd::int32 width, xtd::int32 height) -> void
 Sets the bounds of the control to the specified location and size.
auto set_bounds (xtd::int32 x, xtd::int32 y, xtd::int32 width, xtd::int32 height, xtd::forms::bounds_specified specified) -> void
 Sets the specified bounds of the control to the specified location and size.
virtual auto show () -> void
 Displays the control to the user.
auto suspend_layout () -> void
 Temporarily suspends the layout logic for the control.
virtual auto update () const -> void
 Causes the control to redraw the invalidated regions within its client area.
auto operator<< (control &child) -> control &
 Add child control.
auto operator>> (control &child) -> control &
 Remove child control.
 object ()=default
 Create a new instance of the ultimate base class object.
virtual auto get_type () const noexcept -> type_object
 Gets the type of the current instance.
template<typename object_t>
auto memberwise_clone () const -> xtd::unique_ptr_object< object_t >
 Creates a shallow copy of the current object.
virtual auto compare_to (const control &obj) const noexcept -> xtd::int32=0
 Compares the current instance with another object of the same type.
virtual auto equals (const control &) const noexcept -> bool=0
 Indicates whether the current object is equal to another object of the same type.
static auto check_for_illegal_cross_thread_calls () noexcept -> bool
 Gets a value indicating whether to catch calls on the wrong thread that access a xtd::forms::contrtol::handle property when an application is being debugged.
static auto check_for_illegal_cross_thread_calls (bool value) -> void
 Sets a value indicating whether to catch calls on the wrong thread that access a xtd::forms::contrtol::handle property when an application is being debugged.
static auto modifier_keys () noexcept -> xtd::forms::keys
 Gets a value indicating which of the modifier keys (SHIFT, CTRL, and ALT) is in a pressed state.
static auto mouse_buttons () noexcept -> xtd::forms::mouse_buttons
 Gets a value indicating which of the mouse buttons is in a pressed state.
static auto mouse_position () noexcept -> xtd::drawing::point
 Gets the position of the mouse cursor in screen coordinates.
static auto create () -> control
 A factory to create a specified control.
static auto create (const xtd::drawing::point &location) -> control
 A factory to create a specified control with specified location.
static auto create (const xtd::drawing::point &location, const xtd::drawing::size &size) -> control
 A factory to create a specified control with specified location, and size.
static auto create (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control
 A factory to create a specified control with specified location, size, and name.
static auto create (const control &paren) -> control
 A factory to create a specified control with specified parent.
static auto create (const control &parent, const xtd::drawing::point &location) -> control
 A factory to create a specified control with specified parent, location, size, and name.
static auto create (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> control
 A factory to create a specified control with specified parent, location, and size.
static auto create (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control
 A factory to create a specified control with specified parent, location, size, and name.
template<typename control_t>
static auto create () -> control_t
 A factory to create a specified control.
template<typename control_t>
static auto create (const xtd::drawing::point &location) -> control_t
 A factory to create a specified control with specified location.
template<typename control_t>
static auto create (const xtd::drawing::point &location, const xtd::drawing::size &size) -> control_t
 A factory to create a specified control with specified location, and size.
template<typename control_t>
static auto create (const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control_t
 A factory to create a specified control with specified location, size, and name.
template<typename control_t>
static auto create (const control &parent) -> control_t
 A factory to create a specified control with specified parent.
template<typename control_t>
static auto create (const control &parent, const xtd::drawing::point &location) -> control_t
 A factory to create a specified control with specified parent, and location.
template<typename control_t>
static auto create (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size) -> control_t
 A factory to create a specified control with specified parent, location, and size.
template<typename control_t>
static auto create (const control &parent, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control_t
 A factory to create a specified control with specified parent, location, size, and name.
template<typename control_t>
static auto create (const xtd::string &text) -> control_t
 A factory to create a specified control with specified text.
template<typename control_t>
static auto create (const xtd::string &text, const xtd::drawing::point &location) -> control_t
 A factory to create a specified control with specified text, and location.
template<typename control_t>
static auto create (const xtd::string &text, const xtd::drawing::point &location, const xtd::drawing::size &size) -> control_t
 A factory to create a specified control with specified text, location, and size.
template<typename control_t>
static auto create (const xtd::string &text, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control_t
 A factory to create a specified control with specified text, location,size, and name.
template<typename control_t>
static auto create (const control &parent, const xtd::string &text) -> control_t
 A factory to create a specified control with specified parent, and text.
template<typename control_t>
static auto create (const control &parent, const xtd::string &text, const xtd::drawing::point &location) -> control_t
 A factory to create a specified control with specified parent, text, and location.
template<typename control_t>
static auto create (const control &parent, const xtd::string &text, const xtd::drawing::point &location, const xtd::drawing::size &size) -> control_t
 A factory to create a specified control with specified parent, text, location, and size.
template<typename control_t>
static auto create (const control &parent, const xtd::string &text, const xtd::drawing::point &location, const xtd::drawing::size &size, const xtd::string &name) -> control_t
 A factory to create a specified control with specified parent, text, location, size, and name.
static auto from_child_handle (xtd::intptr handle) -> std::optional< xtd::forms::control_ref >
 Retrieves the control that contains the specified handle.
static auto from_handle (xtd::intptr handle) -> std::optional< xtd::forms::control_ref >
 Returns the control that is currently associated with the specified handle.
template<typename object_a_t, typename object_b_t>
static auto equals (const object_a_t &object_a, const object_b_t &object_b) noexcept -> bool
 Determines whether the specified object instances are considered equal.
template<typename object_a_t, typename object_b_t>
static auto reference_equals (const object_a_t &object_a, const object_b_t &object_b) noexcept -> bool
 Determines whether the specified object instances are the same instance.
auto control_state () const noexcept -> xtd::forms::visual_styles::control_state
 Gets state.
virtual auto default_back_color () const noexcept -> xtd::drawing::color
 Gets the default background color of the control.
virtual auto default_cursor () const noexcept -> xtd::forms::cursor
 Gets the default cursor for the control.
virtual auto default_font () const noexcept -> xtd::drawing::font
 Gets the default font of the control.
virtual auto default_fore_color () const noexcept -> xtd::drawing::color
 Gets the default foreground color of the control.
virtual auto create_handle () -> void
 Creates a handle for the control.
virtual auto destroy_handle () -> void
 Destroys the handle associated with the control.
virtual auto def_wnd_proc (xtd::forms::message &message) -> void
 Sends the specified message to the default window procedure.
auto get_style (xtd::forms::control_styles flag) const noexcept -> bool
 Retrieves the value of the specified control style bit for the control.
virtual auto measure_control () const noexcept -> xtd::drawing::size
 Measure this control.
auto measure_text () const noexcept -> xtd::drawing::size
 Measure this control text.
virtual auto on_auto_size_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::auto_size_changed event.
virtual auto on_back_color_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::back_color_changed event.
virtual auto on_background_image_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::background_image_changed event.
virtual auto on_background_image_layout_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::background_image_layout_changed event.
virtual auto on_control_appearance_changed (const xtd::event_args &e) -> void
 Raises the control::control_appearance_changed event.
virtual auto on_click (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::click event.
virtual auto on_client_size_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::client_size_changed event.
virtual auto on_control_added (const xtd::forms::control_event_args &e) -> void
 Raises the xtd::forms::control::control_added event.
virtual auto on_control_removed (const xtd::forms::control_event_args &e) -> void
 Raises the xtd::forms::control::control_removed event.
virtual auto on_create_control () -> void
 Raises the xtd::forms::control::create_control event.
virtual auto on_cursor_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::cursor_changed event.
virtual auto on_destroy_control () -> void
 Raises the xtd::forms::control::destroy_control event.
virtual auto on_dock_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::dock_changed event.
virtual auto on_double_click (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::double_click event.
virtual auto on_enabled_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::enabled_changed event.
virtual auto on_fore_color_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::fore_color_changed event.
virtual auto on_font_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::font_changed event.
virtual auto on_got_focus (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::got_focus event.
virtual auto on_handle_destroyed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::handle_destroyed event.
virtual auto on_help_requested (xtd::forms::help_event_args &e) -> void
 Raises the xtd::forms::control::help_requested event.
virtual auto on_key_down (xtd::forms::key_event_args &e) -> void
 Raises the xtd::forms::control::key_down event.
virtual auto on_key_press (xtd::forms::key_press_event_args &e) -> void
 Raises the xtd::forms::control::key_press event.
virtual auto on_key_up (xtd::forms::key_event_args &e) -> void
 Raises the xtd::forms::control::key_up event.
virtual auto on_layout (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::layout event.
virtual auto on_location_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::location_changed event.
virtual auto on_lost_focus (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::lost_focus event.
virtual auto on_mouse_click (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_click event.
virtual auto on_mouse_double_click (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_double_click event.
virtual auto on_mouse_down (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_down event.
virtual auto on_mouse_enter (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::mouse_enter event.
virtual auto on_mouse_horizontal_wheel (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_horizontal_wheel event.
virtual auto on_mouse_leave (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::mouse_leave event.
virtual auto on_mouse_move (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_move event.
virtual auto on_mouse_up (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_up event.
virtual auto on_mouse_wheel (const xtd::forms::mouse_event_args &e) -> void
 Raises the xtd::forms::control::mouse_wheel event.
virtual auto on_move (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::move event.
virtual auto on_paint (xtd::forms::paint_event_args &e) -> void
 Raises the xtd::forms::control::paint event.
virtual auto on_paint_background (xtd::forms::paint_event_args &e) -> void
 Paints the background of the xtd::forms::control.
virtual auto on_parent_back_color_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::parent_back_color_changed event.
virtual auto on_parent_cursor_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::parent_cursor_changed event.
virtual auto on_parent_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::parent_changed event.
virtual auto on_parent_enabled_changed (const xtd::event_args &e) -> void
 Raises the xtd::control::enabled_changed event when the xtd::control::enabled property value of the control's container changes..
virtual auto on_parent_fore_color_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::parent_fore_color_changed event.
virtual auto on_parent_font_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::parent_font_changed event.
virtual auto on_resize (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::region event.
virtual auto on_region_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::region_changed event.
virtual auto on_right_to_left_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::right_to_left_changed event.
virtual auto on_size_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::size_changed event.
virtual auto on_style_sheet_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::style_sheet_changed event.
virtual auto on_system_colors_changed (const xtd::event_args &e) -> void
 Raises the control::system_colors_changed event.
virtual auto on_tab_stop_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::tab_stop_changed event.
virtual auto on_text_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::text_changed event.
virtual auto on_visible_changed (const xtd::event_args &e) -> void
 Raises the xtd::forms::control::visible_changed event.
auto post_recreate_handle () noexcept -> void
virtual auto recreate_handle () -> void
 Forces the re-creation of the handle for the control.
auto set_can_focus (bool value) -> void
 Sets a value indicating whether the control can receive focus.
virtual auto set_text (const xtd::string &text) -> void
 Sets the text associated with this control.
auto set_parent (xtd::intptr handle) -> void
 Sets the parent handle of the control.
auto set_style (xtd::forms::control_styles flag, bool value) -> void
 Sets a specified control_styles flag to either true or false.
 component ()
 Initialises a new instance of the component class.
auto design_mode () const noexcept -> bool
 Gets a value that indicates whether the component is currently in design mode.
static auto set_mouse_buttons (xtd::forms::mouse_buttons value) -> void
 Sets a value indicating which of the mouse buttons is in a pressed state.

Constructor & Destructor Documentation

◆ track_bar()

xtd::forms::track_bar::track_bar ( )

Initializes a new instance of the track_bar class.

Remarks
The track_bar is created with a default horizontal orientation and a range of 0 to 10, with a tick mark shown for every value.

Member Function Documentation

◆ large_change() [1/2]

virtual int32 xtd::forms::track_bar::large_change ( ) const
virtualnoexcept

Gets a value to be added to or subtracted from the value property when the scroll box is moved a large distance.

Returns
A numeric value. The default is 5.
Remarks
When the user presses the PAGE UP or PAGE DOWN key or clicks the track bar on either side of the scroll box, the value property changes according to the value set in the large_change property. You might consider setting the large_change value to a percentage of the height (for a vertically oriented track bar) or width (for a horizontally oriented track bar) value. This keeps the distance your track bar moves proportionate to its size.

◆ large_change() [2/2]

virtual track_bar & xtd::forms::track_bar::large_change ( int32 large_change)
virtual

Sets a value to be added to or subtracted from the value property when the scroll box is moved a large distance.

Parameters
large_changeA numeric value. The default is 5.
Returns
Current track_bar instance.
Remarks
When the user presses the PAGE UP or PAGE DOWN key or clicks the track bar on either side of the scroll box, the value property changes according to the value set in the large_change property. You might consider setting the large_change value to a percentage of the height (for a vertically oriented track bar) or width (for a horizontally oriented track bar) value. This keeps the distance your track bar moves proportionate to its size.

◆ maximum() [1/2]

virtual int32 xtd::forms::track_bar::maximum ( ) const
virtualnoexcept

Gets the upper limit of the range this track_bar is working with.

Returns
The maximum value for the track_bar. The default is 10.

◆ maximum() [2/2]

virtual track_bar & xtd::forms::track_bar::maximum ( int32 maximum)
virtual

sets the upper limit of the range this track_bar is working with.

Parameters
maximumThe maximum value for the track_bar. The default is 10.
Returns
Current track_bar instance.
Remarks
You can use the set_range method to set both the maximum and minimum properties at the same time.

◆ minimum() [1/2]

virtual int32 xtd::forms::track_bar::minimum ( ) const
virtualnoexcept

Gets the lower limit of the range this track_bar is working with.

Returns
The minimum value for the track_bar. The default is 0.

◆ minimum() [2/2]

virtual track_bar & xtd::forms::track_bar::minimum ( int32 minimum)
virtual

Sets the lower limit of the range this track_bar is working with.

Parameters
minimumThe minimum value for the track_bar. The default is 0.
Returns
Current track_bar instance.
Remarks
You can use the set_range method to set both the maximum and minimum properties at the same time.

◆ orientation() [1/2]

virtual forms::orientation xtd::forms::track_bar::orientation ( ) const
virtualnoexcept

Gets a value indicating the horizontal or vertical orientation of the track bar.

Returns
One of the orientation values.

◆ orientation() [2/2]

virtual track_bar & xtd::forms::track_bar::orientation ( forms::orientation orientation)
virtual

Sets a value indicating the horizontal or vertical orientation of the track bar.

Parameters
orientationOne of the orientation values.
Returns
Current track_bar instance.
Remarks
When the orientation property is set to orientation::horizontal, the scroll box moves from left to right as the value increases. When the orientation property is set to orientation::vertical, the scroll box moves from bottom to top as the Value increases.

◆ small_change() [1/2]

virtual int32 xtd::forms::track_bar::small_change ( ) const
virtualnoexcept

Gets he value added to or subtracted from the Value property when the scroll box is moved a small distance.

Returns
A numeric value. The default value is 1.
Remarks
When the user presses one of the arrow keys, the value property changes according to the value set in the small_change property.
You might consider setting the value of small_change to a percentage of the value of the height (for a vertically oriented track bar) or width (for a horizontally oriented track bar) property. This sets the distance your track bar moves proportionate to its size.

◆ small_change() [2/2]

virtual track_bar & xtd::forms::track_bar::small_change ( int32 small_change)
virtual

Sets the value added to or subtracted from the Value property when the scroll box is moved a small distance.

Parameters
small_changeA numeric value. The default value is 1.
Returns
Current track_bar instance.
Remarks
When the user presses one of the arrow keys, the value property changes according to the value set in the small_change property.
You might consider setting the value of small_change to a percentage of the value of the height (for a vertically oriented track bar) or width (for a horizontally oriented track bar) property. This sets the distance your track bar moves proportionate to its size.

◆ tick_frequency() [1/2]

virtual int32 xtd::forms::track_bar::tick_frequency ( ) const
virtualnoexcept

Gets a value that specifies the delta between ticks drawn on the control.

Returns
The numeric value representing the delta between ticks. The default is 1.
Remarks
For a track_bar with a large range of values between the minimum and the maximum properties, it might be impractical to draw all the ticks for values on the control. For example, if you have a control with a range of 100, passing in a value of 5 here causes the control to draw 20 ticks. In this case, each tick represents five units in the range of values.

◆ tick_frequency() [2/2]

virtual track_bar & xtd::forms::track_bar::tick_frequency ( int32 tick_frequency)
virtual

Sets a value that specifies the delta between ticks drawn on the control.

Parameters
tick_frequencyThe numeric value representing the delta between ticks. The default is 1.
Returns
Current track_bar instance.
Remarks
For a track_bar with a large range of values between the minimum and the maximum properties, it might be impractical to draw all the ticks for values on the control. For example, if you have a control with a range of 100, passing in a value of 5 here causes the control to draw 20 ticks. In this case, each tick represents five units in the range of values.

◆ tick_style() [1/2]

virtual forms::tick_style xtd::forms::track_bar::tick_style ( ) const
virtualnoexcept

Gets a value indicating how to display the tick marks on the track bar.

Returns
One of the Tick_style values. The default is bottom_right.
Remarks
You can use the tick_style property to modify the manner in which the tick marks are displayed on the track bar.

◆ tick_style() [2/2]

virtual track_bar & xtd::forms::track_bar::tick_style ( forms::tick_style tick_style)
virtual

Sets a value indicating how to display the tick marks on the track bar.

Parameters
tick_styleOne of the tick_style values. The default is bottom_right.
Returns
Current track_bar instance.
Remarks
You can use the tick_style property to modify the manner in which the tick marks are displayed on the track bar.

◆ value() [1/2]

virtual int32 xtd::forms::track_bar::value ( ) const
virtualnoexcept

Gets a numeric value that represents the current position of the scroll box on the track bar.

Returns
A numeric value that is within the minimum and maximum range. The default value is 0.
Remarks
The Value property contains the number that represents the current position of the scroll box on the track bar.

◆ value() [2/2]

virtual track_bar & xtd::forms::track_bar::value ( int32 value)
virtual

Sets a numeric value that represents the current position of the scroll box on the track bar.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
Returns
Current track_bar instance.
Remarks
The Value property contains the number that represents the current position of the scroll box on the track bar.

◆ set_range()

void xtd::forms::track_bar::set_range ( int32 min_value,
int32 max_value )

Sets the minimum and maximum values for a xtd::forms::track_bar.

Parameters
min_valueThe lower limit of the range of the track bar.
max_valueThe upper limit of the range of the track bar.
Remarks
You can use this method to set the entire range for the xtd::forms::track_bar at the same time. To set the minimum or maximum values individually, use the xtd::forms::track_bar::minimum and xtd::forms::track_bar::maximum properties. If the min_value parameter is greater than the max_value parameter, max_value is set equal to min_value.

◆ to_string()

xtd::string xtd::forms::track_bar::to_string ( ) const
overridevirtualnoexcept

Returns a string that represents the track_bar control.

Returns
A string that represents the current progress_bar.
Remarks
The return string includes the type and the values for the minimum, maximum, and value properties.

Reimplemented from xtd::forms::control.

◆ create() [1/32]

track_bar xtd::forms::track_bar::create ( )
static

A factory to create an xtd::forms::track_bar.

Returns
New xtd::forms::track_bar created.

◆ create() [2/32]

track_bar xtd::forms::track_bar::create ( const drawing::point & location)
static

A factory to create an xtd::forms::track_bar with specified location.

Parameters
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [3/32]

track_bar xtd::forms::track_bar::create ( const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified location, and size.

Parameters
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [4/32]

track_bar xtd::forms::track_bar::create ( const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified location, size, and name.

Parameters
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [5/32]

track_bar xtd::forms::track_bar::create ( int32 value)
static

A factory to create an xtd::forms::track_bar with specified value.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
Returns
New xtd::forms::track_bar created.

◆ create() [6/32]

track_bar xtd::forms::track_bar::create ( int32 value,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified value, and location.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [7/32]

track_bar xtd::forms::track_bar::create ( int32 value,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified value, location, and size.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [8/32]

track_bar xtd::forms::track_bar::create ( int32 value,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified value, location, size, and name.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [9/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 maximum )
static

A factory to create an xtd::forms::track_bar with specified value, and maximum.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
Returns
New xtd::forms::track_bar created.

◆ create() [10/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 maximum,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, and location.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [11/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 maximum,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified value, maximum, location, and size.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [12/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 maximum,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified value, maximum, location, size, and name.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [13/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 minimum,
int32 maximum )
static

A factory to create an xtd::forms::track_bar with specified value, minimum, and maximum.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
Returns
New xtd::forms::track_bar created.

◆ create() [14/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, and location.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [15/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, location, and size.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [16/32]

track_bar xtd::forms::track_bar::create ( int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified value, minimum, maximum, location, size, and name.

Parameters
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [17/32]

track_bar xtd::forms::track_bar::create ( const control & parent)
static

A factory to create an xtd::forms::track_bar with specified parent.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [18/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified parent, and location.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [19/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified parent, location, and size.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [20/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified parent, location, size, and name.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [21/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value )
static

A factory to create an xtd::forms::track_bar with specified parent, and value.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
Returns
New xtd::forms::track_bar created.

◆ create() [22/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified parent, value, and location.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [23/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified parent, value, location, and size.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [24/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified parent, value, location, size, and name.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [25/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 maximum )
static

A factory to create an xtd::forms::track_bar with specified parent, value, and maximum.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
Returns
New xtd::forms::track_bar created.

◆ create() [26/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 maximum,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified parent, value, maximum, and location.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [27/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 maximum,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified parent, value, maximum, location, and size.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [28/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 maximum,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified parent, value, maximum, location, size, and name.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [29/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 minimum,
int32 maximum )
static

A factory to create an xtd::forms::track_bar with specified parent, value, minimum, and maximum.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
Returns
New xtd::forms::track_bar created.

◆ create() [30/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location )
static

A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, and location.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [31/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location,
const drawing::size & size )
static

A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, location, and size.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create() [32/32]

track_bar xtd::forms::track_bar::create ( const control & parent,
int32 value,
int32 minimum,
int32 maximum,
const drawing::point & location,
const drawing::size & size,
const xtd::string & name )
static

A factory to create an xtd::forms::track_bar with specified parent, value, minimum, maximum, location, size, and name.

Parameters
parentThe parent that contains the new created xtd::forms::track_bar.
valueA numeric value that is within the minimum and maximum range. The default value is 0.
minimumThe lower limit of values of the scrollable range.
maximumThe upper limit of values of the scrollable range.
locationA xtd::drawing::point that represent location of the xtd::forms::track_bar.
sizeA xtd::drawing::size that represent size of the xtd::forms::track_bar.
nameThe name of the xtd::forms::track_bar.
Returns
New xtd::forms::track_bar created.

◆ create_params()

forms::create_params xtd::forms::track_bar::create_params ( ) const
overrideprotectedvirtualnoexcept

Gets the required creation parameters when the control handle is created.

Returns
A create_params that contains the required creation parameters when the handle to the control is created.

Reimplemented from xtd::forms::control.

◆ default_size()

drawing::size xtd::forms::track_bar::default_size ( ) const
overrideprotectedvirtualnoexcept

Gets the default size of the control.

Returns
The default size of the control.

Reimplemented from xtd::forms::control.

◆ on_handle_created()

void xtd::forms::track_bar::on_handle_created ( const event_args & e)
overrideprotectedvirtual

Overrides control::on_handle_created(const event_args&).

Parameters
eA EventArgs that contains the event data.

Reimplemented from xtd::forms::control.

◆ on_scroll()

virtual void xtd::forms::track_bar::on_scroll ( const event_args & e)
protectedvirtual

Raises the track_bar::scroll event.

Parameters
eAn event_args that contains the event data.
Remarks
You can use the OnScroll event to update other controls as the position of the scroll box changes.
Raising an event invokes the event handler through a delegate.
The on_scroll method also allows derived classes to handle the event without attaching a delegate. This is the preferred technique for handling the event in a derived class.
Notes to Inheritors
Remarks
When overriding on_scroll(const event_args&) in a derived class, be sure to call the base class' on_scroll(const event_args&) method so that registered delegates receive the event.

◆ on_value_changed()

virtual void xtd::forms::track_bar::on_value_changed ( const event_args & e)
protectedvirtual

Raises the track_bar::value_changed event.

Parameters
eThe event_args that contains the event data.

◆ set_bounds_core()

void xtd::forms::track_bar::set_bounds_core ( int32 x,
int32 y,
int32 width,
int32 height,
bounds_specified specified )
overrideprotectedvirtual

Performs the work of setting the specified bounds of this control.

Parameters
xThe new left property value of the control.
yThe new top property value of the control.
widthThe new width property value of the control.
heightThe new height property value of the control.
specifiedA bitwise combination of the bounds_specified values.

Reimplemented from xtd::forms::control.

◆ set_client_size_core()

void xtd::forms::track_bar::set_client_size_core ( int32 width,
int32 height )
overrideprotectedvirtual

Sets the size of the client area of the control.

Parameters
widthThe client area width, in pixels.
heightThe client area height, in pixels.

Reimplemented from xtd::forms::control.

◆ wnd_proc()

void xtd::forms::track_bar::wnd_proc ( message & message)
overrideprotectedvirtual

Processes Windows messages.

Parameters
mThe Windows Message to process.
Remarks
All messages are sent to the wnd_proc method after getting filtered through the pre_process_message method.

Reimplemented from xtd::forms::control.

Member Data Documentation

◆ scroll

event<track_bar, event_handler> xtd::forms::track_bar::scroll

Occurs when either a mouse or keyboard action moves the scroll box.

Remarks
For more information about handling events, see Handling and Raising Events.

◆ value_changed

event<track_bar, event_handler> xtd::forms::track_bar::value_changed

Occurs when the value property of a track bar changes, either by movement of the scroll box or by manipulation in code.

Remarks
For more information about handling events, see Handling and Raising Events.

The documentation for this class was generated from the following file: