demonstrates the use of xtd::trace_forms::trace_form container.
- Windows
-
- macOS
-
- Gnome
-
#define TRACE
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/forms/trace_form>
class form1 :
public form {
public:
form1() {
text(
"Trace form example");
static auto counter = 0;
};
}
private:
};
auto main()->int {
application::run(form1 {});
}