xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
label.cpp

The following code example demonstrate the use of label control.

Windows

macOS

Gnome

#include <xtd/xtd>
using namespace xtd::forms;
namespace examples {
class form1 : public form {
public:
form1() {
text("Label example");
label1.parent(*this);
label1.text("Label 1");
label1.location({10, 10});
}
private:
label label1;
};
}
int main() {
application::run(examples::form1());
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13