xtd - Reference Guide  0.1.1
Modern c++17/20 framework to create console, GUI and unit test applications on Windows, macOS, Linux, iOS and android.
toggle_buttons.cpp

The following code example demonstrate the use of toggle_buttons factory.

Windows

macOS

Gnome

#include <xtd/xtd>
using namespace xtd::forms;
int main() {
auto form_main = control::create<form>("toggle buttons example");
auto group_box_alignment = control::create<group_box>(*form_main, system_texts::alignment(), {10, 10}, {150, 180});
auto toggle_button_align_left = toggle_buttons::align_left(*group_box_alignment, {20, 20});
auto toggle_button_align_right = toggle_buttons::align_right(*group_box_alignment, {20, 50});
auto toggle_button_centered = toggle_buttons::centered(*group_box_alignment, {20, 80});
auto toggle_button_justified = toggle_buttons::justified(*group_box_alignment, {20, 110});
toggle_button_align_left->checked(true);
application::run(*form_main);
}
static void run()
Begins running a standard application message loop on the current thread, without a form.
static xtd::ustring alignment()
Gets a system-defined text that has a string value of "Alignment". This field is constant.
static std::unique_ptr< toggle_button > align_left(const drawing::point &location={-1, -1}, const drawing::size &size={-1, -1}, const drawing::color &back_color=drawing::color::empty, const drawing::color &fore_color=drawing::color::empty)
Create a system-defined toggle_button that represent align left toggle_button.
Definition: toggle_buttons.h:104
static std::unique_ptr< toggle_button > justified(const drawing::point &location={-1, -1}, const drawing::size &size={-1, -1}, const drawing::color &back_color=drawing::color::empty, const drawing::color &fore_color=drawing::color::empty)
Create a system-defined toggle_button that represent justified toggle_button.
Definition: toggle_buttons.h:659
static std::unique_ptr< toggle_button > align_right(const drawing::point &location={-1, -1}, const drawing::size &size={-1, -1}, const drawing::color &back_color=drawing::color::empty, const drawing::color &fore_color=drawing::color::empty)
Create a system-defined toggle_button that represent align right toggle_button.
Definition: toggle_buttons.h:119
static std::unique_ptr< toggle_button > centered(const drawing::point &location={-1, -1}, const drawing::size &size={-1, -1}, const drawing::color &back_color=drawing::color::empty, const drawing::color &fore_color=drawing::color::empty)
Create a system-defined toggle_button that represent centered toggle_button.
Definition: toggle_buttons.h:239
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition: about_box.h:13