xtd 0.2.0
assert_box.cpp

demonstrates the use of xtd::forms::assert_box dialog.

Windows
assert_box_w.png

assert_box_wd.png
macOS
assert_box_m.png

assert_box_md.png
Gnome
assert_box_g.png

assert_box_gd.png
#include <xtd/forms/application>
#include <xtd/forms/assert_box>
#include <xtd/forms/button>
#include <xtd/forms/form>
#include <xtd/diagnostics/debug_break>
using namespace xtd;
using namespace xtd::forms;
class form1 : public form {
public:
form1() {
text("Assert box example");
controls().push_back(button1);
button1.location({10, 10});
button1.auto_size(true);
button1.text("assert...");
button1.click += [&] {
switch(assert_box::show(*this, "Index must be > 0", csf_)) {
default: break;
}
};
}
private:
};
auto main()->int {
application::run(form1 {});
}