xtd 0.2.0
Loading...
Searching...
No Matches
hello_world_message_box.cpp

The classic first application "Hello, World!" with xtd::forms::message_box dialog.

Windows

macOS

Gnome

#include <xtd/xtd>
class main_form : public form {
public:
main_form() {
text("Hello world (message_box)");
button1.location({10, 10});
button1.parent(*this);
button1.text("&Click me");
button1.click += delegate_ {
message_box::show("Hello, World!");
};
}
private:
button button1;
};
auto main() -> int {
application::run(main_form {});
}
#define delegate_
The declaration of a delegate type is similar to a method signature. It has a return value and any nu...
Definition delegate.hpp:900