#include <xtd/xtd>
namespace tutorial {
public:
form_button() {
text("Button");
active_control(button_quit);
button_quit.parent(*this);
button_quit.text("&Quit");
}
static auto main() {
}
private:
close();
}
};
}
Represents an ordered pair of integer x- and y-coordinates that defines a point in a two-dimensional ...
Definition point.h:54
Stores an ordered pair of integers, which specify a height and width.
Definition size.h:31
Represents the base class for classes that contain event data, and provides a value to use for events...
Definition event_args.h:18
generic_event_handler<> event_handler
Represents the method that will handle an event that has no event data.
Definition event_handler.h:32
#define startup_(main_method)
Defines the entry point to be called when the application loads. Generally this is set either to the ...
Definition startup.h:175