#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/forms/label>
namespace timer_example {
class form1 :
public form {
public:
form1() {
label1.location({10, 10});
label1.auto_size(true);
timer1.enabled(!timer1.enabled());
button1.text(timer1.enabled() ?
"Stop" :
"Start");
};
timer1.interval(100_ms);
timer1.tick += [&](
object & sender,
const event_args &
e) {
label1.text(string::format("{:F1}", ++counter / 10.0));
};
client_size({230, 130});
}
private:
int counter = 0;
};
}
auto main() -> int {
}
static const xtd::drawing::color dodger_blue
Gets a system-defined color that has an ARGB value of 0xFF1E90FF. This field is constant.
Definition color.hpp:182
Defines a particular format for text, including font face, size, and style attributes....
Definition font.hpp:45
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition event_args.hpp:18
@ italic
Italic text.
Definition font_style.hpp:23
@ e
The E key.
Definition console_key.hpp:96
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10
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