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
up_down_button.cpp

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

Windows

macOS

Gnome

#include <xtd/xtd>
using namespace xtd;
using namespace xtd::forms;
namespace examples {
class form1 : public form {
public:
form1() {
text("Up down button example");
up_down_button1.parent(*this);
up_down_button1.location({10, 10});
up_down_button1.value_changed += [&] {
label1.text(ustring::format("value = {}", up_down_button1.value()));
};
up_down_button1.minimum(10);
up_down_button1.maximum(20);
up_down_button1.value(15);
up_down_button1.wrapped(true);
label1.parent(*this);
label1.location({10, 50});
}
private:
up_down_button up_down_button1;
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 up down button.
Definition: up_down_button.h:21
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