The following code example demonstrate the use of check_box control.
#include <xtd/xtd>
namespace examples {
class form1 : public form {
public:
form1() {
text("Check box example");
controls().push_back_range({check_box1, check_box2, check_box3, check_box4, check_box5});
check_box1.auto_check(false);
check_box1.click += [&] {
};
check_box1.location({30, 30});
check_box2.check_state_changed += [&] {
};
check_box2.checked(true);
check_box2.location({30, 60});
check_box3.auto_size(true);
check_box3.check_state_changed += [&] {
};
check_box3.three_state(true);
check_box3.location({30, 90});
check_box4.check_state_changed += [&] {
};
check_box4.checked(true);
check_box4.location({30, 120});
check_box5.auto_check(false);
check_box5.click += [&] {
};
check_box5.location({30, 150});
}
private:
check_box check_box1;
check_box check_box2;
check_box check_box3;
check_box check_box4;
check_box check_box5;
};
}
int main() {
}
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17