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

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

Windows

macOS

Gnome

#include <xtd/xtd>
auto main() -> int {
auto main_form = form::create("Hello world (message_box)");
auto message_button = button::create(main_form, "&Click me", {10, 10});
message_button.click += delegate_{message_box::show("Hello, World!");};
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