Shows how to create an application_use_wait_cursor with xtd::forms::application::use_wait_cursor method.
- Windows
-
- macOS
-
- Gnome
-
#include <xtd/forms/application>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/threading/thread>
class form1 :
public form {
public:
form1() {
text(
"Application use wait cursor example");
for (auto count = 0; count < 500; ++count) {
}
};
}
private:
};
auto main()->int {
}