xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
numeric_up_down.cpp

The following code example demonstrate the use of numeric up down control.

Windows

macOS

Gnome

#include <xtd/xtd>
using namespace xtd;
using namespace xtd::forms;
namespace examples {
class form1 : public form {
public:
form1() {
text("Numeric up down example");
active_control(numeric_up_down1);
numeric_up_down1.parent(*this);
numeric_up_down1.location({80, 50});
numeric_up_down1.wrapped(true);
numeric_up_down1.value_changed += [&] {
label1.text(ustring::format("value = {}", numeric_up_down1.value()));
};
numeric_up_down1.text_changed += [&] {
cdebug << ustring::format("text = {}", numeric_up_down1.text()) << std::endl;
};
numeric_up_down1.value(50);
numeric_up_down2.parent(*this);
numeric_up_down2.location({80, 100});
numeric_up_down2.decimal_place(2);
numeric_up_down2.increment(.01);
numeric_up_down2.minimum(10.0);
numeric_up_down2.maximum(11.0);
label1.parent(*this);
label1.location({80, 150});
}
private:
numeric_up_down numeric_up_down1;
numeric_up_down numeric_up_down2;
label label1;
};
}
int main() {
application::run(examples::form1());
}
Represents a window or dialog box that makes up an application's user interface.
Definition: form.h:40
Represents a standard Windows label.
Definition: label.h:26
Represents a standard Windows numeric up down.
Definition: numeric_up_down.h:24
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17