This repository was archived by the owner on Jan 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathradio_button.cpp
More file actions
64 lines (54 loc) · 1.97 KB
/
Copy pathradio_button.cpp
File metadata and controls
64 lines (54 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include <xtd/xtd.forms>
using namespace xtd;
using namespace xtd::forms;
namespace examples {
class form1 : public form {
public:
form1() {
text("Radio button example");
controls().push_back_range({radio_button1, radio_button2, radio_button3, radio_button4, radio_button5, label1});
radio_button1.auto_check(false);
radio_button1.checked(true);
radio_button1.location({30, 30});
radio_button1.font(drawing::font(font(), drawing::font_style::italic));
radio_button1.text("Radio 1");
radio_button1.click += [&] {
// Uncomments next line to check / uncheck radio button 1 (auto_check is false...)
//radio_button1.checked(!radio_button1.checked());
};
radio_button2.location({30, 60});
radio_button2.text("Radio 2");
radio_button3.checked_changed += [&] {
label1.text(strings::format("Radio 3 checked = {}", radio_button3.checked()));
};
radio_button3.checked(true);
radio_button3.location({30, 90});
radio_button3.text("Radio 3");
radio_button4.appearance(appearance::button);
radio_button4.location({30, 120});
radio_button4.text("Radio 4");
radio_button5.auto_check(false);
radio_button5.appearance(appearance::button);
radio_button5.checked(true);
radio_button5.font(drawing::font(font(), drawing::font_style::italic));
radio_button5.location({30, 150});
radio_button5.text("Radio 5");
radio_button5.click += [&] {
// Uncomments next line to check / uncheck radio button 5 (auto_check is false...)
//radio_button5.checked(!radio_button5.checked());
};
label1.auto_size(true);
label1.location({30, 180});
}
private:
radio_button radio_button1;
radio_button radio_button2;
radio_button radio_button3;
radio_button radio_button4;
radio_button radio_button5;
label label1;
};
}
int main() {
application::run(examples::form1());
}