xtd - Reference Guide  0.1.0
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
Loading...
Searching...
No Matches
radio_button.cpp

The following code example demonstrate the use of radio_button control.

Windows

macOS

Gnome

#include <xtd/xtd>
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.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(ustring::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.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());
}
Defines a particular format for text, including font face, size, and style attributes....
Definition: font.h:39
Represents a window or dialog box that makes up an application's user interface.
Definition: form.h:40
Represents a standard Windows label.
Definition: label.h:26
Enables the user to select a single option from a group of choices when paired with other xtd::forms:...
Definition: radio_button.h:26
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition: system_report.h:17