#include <xtd/xtd>
namespace hello_world_label_example {
class main_form :
public form {
public:
main_form() {
text(
"Hello world (label)");
controls().push_back(label1);
label1.shadow(true);
label1.text("Hello, World!");
}
private:
};
}
auto main() -> int {
}
static const xtd::drawing::color green
Gets a system-defined color that has an ARGB value of 0xFF008000. This field is constant.
Definition color.hpp:212
@ italic
Italic text.
Definition font_style.hpp:23
@ bold
Bold text.
Definition font_style.hpp:21
The xtd::drawing::text namespace provides advanced GDI+ typography functionality.
Definition font_collection.hpp:14
The xtd::drawing namespace provides access to GDI+ basic graphics functionality. More advanced functi...
Definition actions_system_images.hpp:10