The following code example demonstrate the use of use_wait_cursor class.
- Windows
-
- macOS
-
- Gnome
-
#include <thread>
#include <xtd/xtd>
using namespace std::chrono;
using namespace std::this_thread;
class form1 :
public form {
public:
form1() {
text("Use wait cursor example");
button1.auto_size(true);
button1.location({10, 10});
button1.parent(*this);
button1.text("Do something...");
button1.click += [] {
for (auto count = 0; count < 500; ++count) {
application::do_events();
sleep_for(milliseconds(10));
}
};
}
private:
};
int main() {
}