52 virtual double maximum() {
return maximum_;}
62 virtual double minimum() {
return minimum_;}
72 virtual double value() {
return value_;}
93 maximum(min_value > max_value ? min_value : max_value);
99 xtd::ustring to_string() const noexcept
override {
return ustring::format(
"{}, minimum: {}, maximum: {}, value: {}", ustring::full_class_name(*
this), minimum_, maximum_, value_);}
128 int32_t decimal_place_ = 0;
129 double increment_ = 1.0;
130 double maximum_ = 100.0;
131 double minimum_ = 0.0;
133 bool wrapped_ =
false;
Represents an ARGB (alpha, red, green, blue) color.
Definition: color.h:39
Stores an ordered pair of integers, which specify a height and width.
Definition: size.h:25
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition: event_args.h:18
Represents an event.
Definition: event.h:21
Represents text as a sequence of UTF-8 code units.
Definition: ustring.h:48
event< numeric_up_down, event_handler > value_changed
Occurs when the value property has been changed in some way.
Definition: numeric_up_down.h:103
#define forms_export_
Define shared library export.
Definition: forms_export.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17
Contains xtd::forms::up_down_base control.