xtd 0.2.0
lcd_label.cpp

demonstrates how to use xtd::forms::lcd_label control.

Windows

macOS

Gnome

#include <xtd/forms/application>
#include <xtd/forms/form>
#include <xtd/forms/lcd_label>
#include <xtd/forms/numeric_up_down>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Lcd label example");
lcd_label1.location({10, 50});
lcd_label1.parent(*this);
lcd_label1.segment_style(segment_style::modern);
lcd_label1.auto_size(true);
numeric_up_down1.location({10, 10});
numeric_up_down1.parent(*this);
numeric_up_down1.set_range(0, 15000000);
numeric_up_down1.increment(0.01);
numeric_up_down1.decimal_place(2);
numeric_up_down1.width(180);
numeric_up_down1.value_changed += [&] {
lcd_label1.text(string::format("{,11:F2}", numeric_up_down1.value()));
};
numeric_up_down1.value(12345678.90);
}
private:
numeric_up_down numeric_up_down1;
lcd_label lcd_label1;
};
auto main() -> int {
application::run(form1 {});
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
Represents a window or dialog box that makes up an application's user interface.
Definition form.hpp:54
Represents a lcd label.
Definition lcd_label.hpp:40
Represents a standard Windows numeric up down.
Definition numeric_up_down.hpp:34
@ modern
Modern segment style.
Definition segment_style.hpp:25
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition texts.hpp:217
Contains classes that represent ASCII and Unicode character encodings; abstract base classes for conv...
Definition basic_string_builder.hpp:16
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition abstract_object.hpp:8