xtd 0.2.0
Loading...
Searching...
No Matches
xtd::forms::radio_buttons Class Referencefinal
Inheritance diagram for xtd::forms::radio_buttons:
xtd::static_object

Definition

Provides a collection of radio_button objects for use by a Windows Forms application.

Header
#include <xtd/forms/radio_buttons>
Namespace
xtd::forms
Library
xtd.forms
Examples
The following code example demonstrates the use of radio_button control factory.
#include <xtd/drawing/texts>
#include <xtd/forms/application>
#include <xtd/forms/form>
#include <xtd/forms/group_box>
#include <xtd/forms/radio_buttons>
using namespace xtd::forms;
auto main() -> int {
auto form_main = form::create("Radio buttons example");
auto group_box_alignment = group_box::create(form_main, xtd::drawing::texts::alignment(), {10, 10}, {150, 180});
auto radio_button_align_left = radio_buttons::align_left(group_box_alignment, true, {20, 20});
auto radio_button_align_right = radio_buttons::align_right(group_box_alignment, false, {20, 50});
auto radio_button_centered = radio_buttons::centered(group_box_alignment, false, {20, 80});
auto radio_button_justified = radio_buttons::justified(group_box_alignment, false, {20, 110});
application::run(form_main);
}
static xtd::string alignment()
Gets a system-defined text that has a string value of "Alignment". This field is constant.
static void run()
Begins running a standard application message loop on the current thread, without a form.
static form create()
A factory to create an xtd::forms::form.
static group_box create()
A factory to create an xtd::forms::group_box.
static radio_button justified()
Create a system-defined radio_button that represent justified radio_button.
static radio_button align_right()
Create a system-defined radio_button that represent align_right radio_button.
static radio_button align_left()
Create a system-defined radio_button that represent align_left radio_button.
static radio_button centered()
Create a system-defined radio_button that represent centered radio_button.
The xtd::forms namespace contains classes for creating Windows-based applications that take full adva...
Definition xtd_about_box.hpp:12

Public Static Methods

static radio_button abort ()
 Create a system-defined radio_button that represent abort radio_button.
 
static radio_button abort (const drawing::point &location)
 Create a system-defined radio_button that represent abort radio_button with specified location.
 
static radio_button abort (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent abort radio_button with specified location, and size.
 
static radio_button abort (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent abort radio_button with specified location, size, and name.
 
static radio_button abort (bool checked)
 Create a system-defined radio_button that represent abort radio_button with specified and check_state.
 
static radio_button abort (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent abort radio_button with specified check_state, and location.
 
static radio_button abort (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent abort radio_button with specified check_state, location, and size.
 
static radio_button abort (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent abort radio_button with specified check_state, location, size, and name.
 
static radio_button abort (const control &parent)
 Create a system-defined radio_button that represent abort radio_button with specified parent.
 
static radio_button abort (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent abort radio_button with specified parent, and location.
 
static radio_button abort (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent abort radio_button with specified parent, location, and size.
 
static radio_button abort (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent abort radio_button with specified parent, location, size, and name.
 
static radio_button abort (const control &parent, bool checked)
 Create a system-defined radio_button that represent abort radio_button with specified parent, and check_state.
 
static radio_button abort (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent abort radio_button with specified parent, check_state, and location.
 
static radio_button abort (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent abort radio_button with specified parent, check_state, location, and size.
 
static radio_button abort (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent abort radio_button with specified parent, check_state, location, size, and name.
 
static radio_button about ()
 Create a system-defined radio_button that represent about radio_button.
 
static radio_button about (const drawing::point &location)
 Create a system-defined radio_button that represent about radio_button with specified location.
 
static radio_button about (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent about radio_button with specified location, and size.
 
static radio_button about (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent about radio_button with specified location, size, and name.
 
static radio_button about (bool checked)
 Create a system-defined radio_button that represent about radio_button with specified and check_state.
 
static radio_button about (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent about radio_button with specified check_state, and location.
 
static radio_button about (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent about radio_button with specified check_state, location, and size.
 
static radio_button about (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent about radio_button with specified check_state, location, size, and name.
 
static radio_button about (const control &parent)
 Create a system-defined radio_button that represent about radio_button with specified parent.
 
static radio_button about (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent about radio_button with specified parent, and location.
 
static radio_button about (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent about radio_button with specified parent, location, and size.
 
static radio_button about (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent about radio_button with specified parent, location, size, and name.
 
static radio_button about (const control &parent, bool checked)
 Create a system-defined radio_button that represent about radio_button with specified parent, and check_state.
 
static radio_button about (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent about radio_button with specified parent, check_state, and location.
 
static radio_button about (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent about radio_button with specified parent, check_state, location, and size.
 
static radio_button about (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent about radio_button with specified parent, check_state, location, size, and name.
 
static radio_button actual_size ()
 Create a system-defined radio_button that represent actual_size radio_button.
 
static radio_button actual_size (const drawing::point &location)
 Create a system-defined radio_button that represent actual_size radio_button with specified location.
 
static radio_button actual_size (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent actual_size radio_button with specified location, and size.
 
static radio_button actual_size (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent actual_size radio_button with specified location, size, and name.
 
static radio_button actual_size (bool checked)
 Create a system-defined radio_button that represent actual_size radio_button with specified and check_state.
 
static radio_button actual_size (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent actual_size radio_button with specified check_state, and location.
 
static radio_button actual_size (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent actual_size radio_button with specified check_state, location, and size.
 
static radio_button actual_size (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent actual_size radio_button with specified check_state, location, size, and name.
 
static radio_button actual_size (const control &parent)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent.
 
static radio_button actual_size (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, and location.
 
static radio_button actual_size (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, location, and size.
 
static radio_button actual_size (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, location, size, and name.
 
static radio_button actual_size (const control &parent, bool checked)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, and check_state.
 
static radio_button actual_size (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, check_state, and location.
 
static radio_button actual_size (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, check_state, location, and size.
 
static radio_button actual_size (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent actual_size radio_button with specified parent, check_state, location, size, and name.
 
static radio_button add ()
 Create a system-defined radio_button that represent add radio_button.
 
static radio_button add (const drawing::point &location)
 Create a system-defined radio_button that represent add radio_button with specified location.
 
static radio_button add (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent add radio_button with specified location, and size.
 
static radio_button add (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent add radio_button with specified location, size, and name.
 
static radio_button add (bool checked)
 Create a system-defined radio_button that represent add radio_button with specified and check_state.
 
static radio_button add (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent add radio_button with specified check_state, and location.
 
static radio_button add (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent add radio_button with specified check_state, location, and size.
 
static radio_button add (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent add radio_button with specified check_state, location, size, and name.
 
static radio_button add (const control &parent)
 Create a system-defined radio_button that represent add radio_button with specified parent.
 
static radio_button add (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent add radio_button with specified parent, and location.
 
static radio_button add (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent add radio_button with specified parent, location, and size.
 
static radio_button add (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent add radio_button with specified parent, location, size, and name.
 
static radio_button add (const control &parent, bool checked)
 Create a system-defined radio_button that represent add radio_button with specified parent, and check_state.
 
static radio_button add (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent add radio_button with specified parent, check_state, and location.
 
static radio_button add (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent add radio_button with specified parent, check_state, location, and size.
 
static radio_button add (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent add radio_button with specified parent, check_state, location, size, and name.
 
static radio_button alignment ()
 Create a system-defined radio_button that represent alignment radio_button.
 
static radio_button alignment (const drawing::point &location)
 Create a system-defined radio_button that represent alignment radio_button with specified location.
 
static radio_button alignment (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent alignment radio_button with specified location, and size.
 
static radio_button alignment (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent alignment radio_button with specified location, size, and name.
 
static radio_button alignment (bool checked)
 Create a system-defined radio_button that represent alignment radio_button with specified and check_state.
 
static radio_button alignment (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent alignment radio_button with specified check_state, and location.
 
static radio_button alignment (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent alignment radio_button with specified check_state, location, and size.
 
static radio_button alignment (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent alignment radio_button with specified check_state, location, size, and name.
 
static radio_button alignment (const control &parent)
 Create a system-defined radio_button that represent alignment radio_button with specified parent.
 
static radio_button alignment (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, and location.
 
static radio_button alignment (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, location, and size.
 
static radio_button alignment (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, location, size, and name.
 
static radio_button alignment (const control &parent, bool checked)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, and check_state.
 
static radio_button alignment (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, check_state, and location.
 
static radio_button alignment (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, check_state, location, and size.
 
static radio_button alignment (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent alignment radio_button with specified parent, check_state, location, size, and name.
 
static radio_button align_left ()
 Create a system-defined radio_button that represent align_left radio_button.
 
static radio_button align_left (const drawing::point &location)
 Create a system-defined radio_button that represent align_left radio_button with specified location.
 
static radio_button align_left (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_left radio_button with specified location, and size.
 
static radio_button align_left (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_left radio_button with specified location, size, and name.
 
static radio_button align_left (bool checked)
 Create a system-defined radio_button that represent align_left radio_button with specified and check_state.
 
static radio_button align_left (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent align_left radio_button with specified check_state, and location.
 
static radio_button align_left (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_left radio_button with specified check_state, location, and size.
 
static radio_button align_left (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_left radio_button with specified check_state, location, size, and name.
 
static radio_button align_left (const control &parent)
 Create a system-defined radio_button that represent align_left radio_button with specified parent.
 
static radio_button align_left (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, and location.
 
static radio_button align_left (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, location, and size.
 
static radio_button align_left (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, location, size, and name.
 
static radio_button align_left (const control &parent, bool checked)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, and check_state.
 
static radio_button align_left (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, check_state, and location.
 
static radio_button align_left (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, check_state, location, and size.
 
static radio_button align_left (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_left radio_button with specified parent, check_state, location, size, and name.
 
static radio_button align_right ()
 Create a system-defined radio_button that represent align_right radio_button.
 
static radio_button align_right (const drawing::point &location)
 Create a system-defined radio_button that represent align_right radio_button with specified location.
 
static radio_button align_right (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_right radio_button with specified location, and size.
 
static radio_button align_right (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_right radio_button with specified location, size, and name.
 
static radio_button align_right (bool checked)
 Create a system-defined radio_button that represent align_right radio_button with specified and check_state.
 
static radio_button align_right (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent align_right radio_button with specified check_state, and location.
 
static radio_button align_right (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_right radio_button with specified check_state, location, and size.
 
static radio_button align_right (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_right radio_button with specified check_state, location, size, and name.
 
static radio_button align_right (const control &parent)
 Create a system-defined radio_button that represent align_right radio_button with specified parent.
 
static radio_button align_right (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, and location.
 
static radio_button align_right (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, location, and size.
 
static radio_button align_right (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, location, size, and name.
 
static radio_button align_right (const control &parent, bool checked)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, and check_state.
 
static radio_button align_right (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, check_state, and location.
 
static radio_button align_right (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, check_state, location, and size.
 
static radio_button align_right (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent align_right radio_button with specified parent, check_state, location, size, and name.
 
static radio_button apply ()
 Create a system-defined radio_button that represent apply radio_button.
 
static radio_button apply (const drawing::point &location)
 Create a system-defined radio_button that represent apply radio_button with specified location.
 
static radio_button apply (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent apply radio_button with specified location, and size.
 
static radio_button apply (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent apply radio_button with specified location, size, and name.
 
static radio_button apply (bool checked)
 Create a system-defined radio_button that represent apply radio_button with specified and check_state.
 
static radio_button apply (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent apply radio_button with specified check_state, and location.
 
static radio_button apply (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent apply radio_button with specified check_state, location, and size.
 
static radio_button apply (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent apply radio_button with specified check_state, location, size, and name.
 
static radio_button apply (const control &parent)
 Create a system-defined radio_button that represent apply radio_button with specified parent.
 
static radio_button apply (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent apply radio_button with specified parent, and location.
 
static radio_button apply (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent apply radio_button with specified parent, location, and size.
 
static radio_button apply (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent apply radio_button with specified parent, location, size, and name.
 
static radio_button apply (const control &parent, bool checked)
 Create a system-defined radio_button that represent apply radio_button with specified parent, and check_state.
 
static radio_button apply (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent apply radio_button with specified parent, check_state, and location.
 
static radio_button apply (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent apply radio_button with specified parent, check_state, location, and size.
 
static radio_button apply (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent apply radio_button with specified parent, check_state, location, size, and name.
 
static radio_button ascending ()
 Create a system-defined radio_button that represent ascending radio_button.
 
static radio_button ascending (const drawing::point &location)
 Create a system-defined radio_button that represent ascending radio_button with specified location.
 
static radio_button ascending (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ascending radio_button with specified location, and size.
 
static radio_button ascending (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ascending radio_button with specified location, size, and name.
 
static radio_button ascending (bool checked)
 Create a system-defined radio_button that represent ascending radio_button with specified and check_state.
 
static radio_button ascending (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent ascending radio_button with specified check_state, and location.
 
static radio_button ascending (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ascending radio_button with specified check_state, location, and size.
 
static radio_button ascending (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ascending radio_button with specified check_state, location, size, and name.
 
static radio_button ascending (const control &parent)
 Create a system-defined radio_button that represent ascending radio_button with specified parent.
 
static radio_button ascending (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, and location.
 
static radio_button ascending (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, location, and size.
 
static radio_button ascending (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, location, size, and name.
 
static radio_button ascending (const control &parent, bool checked)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, and check_state.
 
static radio_button ascending (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, check_state, and location.
 
static radio_button ascending (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, check_state, location, and size.
 
static radio_button ascending (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ascending radio_button with specified parent, check_state, location, size, and name.
 
static radio_button back ()
 Create a system-defined radio_button that represent back radio_button.
 
static radio_button back (const drawing::point &location)
 Create a system-defined radio_button that represent back radio_button with specified location.
 
static radio_button back (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent back radio_button with specified location, and size.
 
static radio_button back (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent back radio_button with specified location, size, and name.
 
static radio_button back (bool checked)
 Create a system-defined radio_button that represent back radio_button with specified and check_state.
 
static radio_button back (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent back radio_button with specified check_state, and location.
 
static radio_button back (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent back radio_button with specified check_state, location, and size.
 
static radio_button back (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent back radio_button with specified check_state, location, size, and name.
 
static radio_button back (const control &parent)
 Create a system-defined radio_button that represent back radio_button with specified parent.
 
static radio_button back (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent back radio_button with specified parent, and location.
 
static radio_button back (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent back radio_button with specified parent, location, and size.
 
static radio_button back (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent back radio_button with specified parent, location, size, and name.
 
static radio_button back (const control &parent, bool checked)
 Create a system-defined radio_button that represent back radio_button with specified parent, and check_state.
 
static radio_button back (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent back radio_button with specified parent, check_state, and location.
 
static radio_button back (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent back radio_button with specified parent, check_state, location, and size.
 
static radio_button back (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent back radio_button with specified parent, check_state, location, size, and name.
 
static radio_button bold ()
 Create a system-defined radio_button that represent bold radio_button.
 
static radio_button bold (const drawing::point &location)
 Create a system-defined radio_button that represent bold radio_button with specified location.
 
static radio_button bold (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bold radio_button with specified location, and size.
 
static radio_button bold (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bold radio_button with specified location, size, and name.
 
static radio_button bold (bool checked)
 Create a system-defined radio_button that represent bold radio_button with specified and check_state.
 
static radio_button bold (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent bold radio_button with specified check_state, and location.
 
static radio_button bold (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bold radio_button with specified check_state, location, and size.
 
static radio_button bold (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bold radio_button with specified check_state, location, size, and name.
 
static radio_button bold (const control &parent)
 Create a system-defined radio_button that represent bold radio_button with specified parent.
 
static radio_button bold (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent bold radio_button with specified parent, and location.
 
static radio_button bold (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bold radio_button with specified parent, location, and size.
 
static radio_button bold (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bold radio_button with specified parent, location, size, and name.
 
static radio_button bold (const control &parent, bool checked)
 Create a system-defined radio_button that represent bold radio_button with specified parent, and check_state.
 
static radio_button bold (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent bold radio_button with specified parent, check_state, and location.
 
static radio_button bold (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bold radio_button with specified parent, check_state, location, and size.
 
static radio_button bold (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bold radio_button with specified parent, check_state, location, size, and name.
 
static radio_button bottom ()
 Create a system-defined radio_button that represent bottom radio_button.
 
static radio_button bottom (const drawing::point &location)
 Create a system-defined radio_button that represent bottom radio_button with specified location.
 
static radio_button bottom (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bottom radio_button with specified location, and size.
 
static radio_button bottom (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bottom radio_button with specified location, size, and name.
 
static radio_button bottom (bool checked)
 Create a system-defined radio_button that represent bottom radio_button with specified and check_state.
 
static radio_button bottom (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent bottom radio_button with specified check_state, and location.
 
static radio_button bottom (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bottom radio_button with specified check_state, location, and size.
 
static radio_button bottom (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bottom radio_button with specified check_state, location, size, and name.
 
static radio_button bottom (const control &parent)
 Create a system-defined radio_button that represent bottom radio_button with specified parent.
 
static radio_button bottom (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, and location.
 
static radio_button bottom (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, location, and size.
 
static radio_button bottom (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, location, size, and name.
 
static radio_button bottom (const control &parent, bool checked)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, and check_state.
 
static radio_button bottom (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, check_state, and location.
 
static radio_button bottom (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, check_state, location, and size.
 
static radio_button bottom (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent bottom radio_button with specified parent, check_state, location, size, and name.
 
static radio_button cancel ()
 Create a system-defined radio_button that represent cancel radio_button.
 
static radio_button cancel (const drawing::point &location)
 Create a system-defined radio_button that represent cancel radio_button with specified location.
 
static radio_button cancel (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cancel radio_button with specified location, and size.
 
static radio_button cancel (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cancel radio_button with specified location, size, and name.
 
static radio_button cancel (bool checked)
 Create a system-defined radio_button that represent cancel radio_button with specified and check_state.
 
static radio_button cancel (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cancel radio_button with specified check_state, and location.
 
static radio_button cancel (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cancel radio_button with specified check_state, location, and size.
 
static radio_button cancel (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cancel radio_button with specified check_state, location, size, and name.
 
static radio_button cancel (const control &parent)
 Create a system-defined radio_button that represent cancel radio_button with specified parent.
 
static radio_button cancel (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, and location.
 
static radio_button cancel (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, location, and size.
 
static radio_button cancel (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, location, size, and name.
 
static radio_button cancel (const control &parent, bool checked)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, and check_state.
 
static radio_button cancel (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, check_state, and location.
 
static radio_button cancel (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, check_state, location, and size.
 
static radio_button cancel (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cancel radio_button with specified parent, check_state, location, size, and name.
 
static radio_button cdrom ()
 Create a system-defined radio_button that represent cdrom radio_button.
 
static radio_button cdrom (const drawing::point &location)
 Create a system-defined radio_button that represent cdrom radio_button with specified location.
 
static radio_button cdrom (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cdrom radio_button with specified location, and size.
 
static radio_button cdrom (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cdrom radio_button with specified location, size, and name.
 
static radio_button cdrom (bool checked)
 Create a system-defined radio_button that represent cdrom radio_button with specified and check_state.
 
static radio_button cdrom (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cdrom radio_button with specified check_state, and location.
 
static radio_button cdrom (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cdrom radio_button with specified check_state, location, and size.
 
static radio_button cdrom (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cdrom radio_button with specified check_state, location, size, and name.
 
static radio_button cdrom (const control &parent)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent.
 
static radio_button cdrom (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, and location.
 
static radio_button cdrom (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, location, and size.
 
static radio_button cdrom (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, location, size, and name.
 
static radio_button cdrom (const control &parent, bool checked)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, and check_state.
 
static radio_button cdrom (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, check_state, and location.
 
static radio_button cdrom (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, check_state, location, and size.
 
static radio_button cdrom (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cdrom radio_button with specified parent, check_state, location, size, and name.
 
static radio_button centered ()
 Create a system-defined radio_button that represent centered radio_button.
 
static radio_button centered (const drawing::point &location)
 Create a system-defined radio_button that represent centered radio_button with specified location.
 
static radio_button centered (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent centered radio_button with specified location, and size.
 
static radio_button centered (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent centered radio_button with specified location, size, and name.
 
static radio_button centered (bool checked)
 Create a system-defined radio_button that represent centered radio_button with specified and check_state.
 
static radio_button centered (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent centered radio_button with specified check_state, and location.
 
static radio_button centered (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent centered radio_button with specified check_state, location, and size.
 
static radio_button centered (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent centered radio_button with specified check_state, location, size, and name.
 
static radio_button centered (const control &parent)
 Create a system-defined radio_button that represent centered radio_button with specified parent.
 
static radio_button centered (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent centered radio_button with specified parent, and location.
 
static radio_button centered (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent centered radio_button with specified parent, location, and size.
 
static radio_button centered (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent centered radio_button with specified parent, location, size, and name.
 
static radio_button centered (const control &parent, bool checked)
 Create a system-defined radio_button that represent centered radio_button with specified parent, and check_state.
 
static radio_button centered (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent centered radio_button with specified parent, check_state, and location.
 
static radio_button centered (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent centered radio_button with specified parent, check_state, location, and size.
 
static radio_button centered (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent centered radio_button with specified parent, check_state, location, size, and name.
 
static radio_button clear ()
 Create a system-defined radio_button that represent clear radio_button.
 
static radio_button clear (const drawing::point &location)
 Create a system-defined radio_button that represent clear radio_button with specified location.
 
static radio_button clear (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent clear radio_button with specified location, and size.
 
static radio_button clear (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent clear radio_button with specified location, size, and name.
 
static radio_button clear (bool checked)
 Create a system-defined radio_button that represent clear radio_button with specified and check_state.
 
static radio_button clear (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent clear radio_button with specified check_state, and location.
 
static radio_button clear (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent clear radio_button with specified check_state, location, and size.
 
static radio_button clear (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent clear radio_button with specified check_state, location, size, and name.
 
static radio_button clear (const control &parent)
 Create a system-defined radio_button that represent clear radio_button with specified parent.
 
static radio_button clear (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent clear radio_button with specified parent, and location.
 
static radio_button clear (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent clear radio_button with specified parent, location, and size.
 
static radio_button clear (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent clear radio_button with specified parent, location, size, and name.
 
static radio_button clear (const control &parent, bool checked)
 Create a system-defined radio_button that represent clear radio_button with specified parent, and check_state.
 
static radio_button clear (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent clear radio_button with specified parent, check_state, and location.
 
static radio_button clear (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent clear radio_button with specified parent, check_state, location, and size.
 
static radio_button clear (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent clear radio_button with specified parent, check_state, location, size, and name.
 
static radio_button close ()
 Create a system-defined radio_button that represent close radio_button.
 
static radio_button close (const drawing::point &location)
 Create a system-defined radio_button that represent close radio_button with specified location.
 
static radio_button close (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent close radio_button with specified location, and size.
 
static radio_button close (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent close radio_button with specified location, size, and name.
 
static radio_button close (bool checked)
 Create a system-defined radio_button that represent close radio_button with specified and check_state.
 
static radio_button close (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent close radio_button with specified check_state, and location.
 
static radio_button close (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent close radio_button with specified check_state, location, and size.
 
static radio_button close (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent close radio_button with specified check_state, location, size, and name.
 
static radio_button close (const control &parent)
 Create a system-defined radio_button that represent close radio_button with specified parent.
 
static radio_button close (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent close radio_button with specified parent, and location.
 
static radio_button close (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent close radio_button with specified parent, location, and size.
 
static radio_button close (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent close radio_button with specified parent, location, size, and name.
 
static radio_button close (const control &parent, bool checked)
 Create a system-defined radio_button that represent close radio_button with specified parent, and check_state.
 
static radio_button close (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent close radio_button with specified parent, check_state, and location.
 
static radio_button close (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent close radio_button with specified parent, check_state, location, and size.
 
static radio_button close (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent close radio_button with specified parent, check_state, location, size, and name.
 
static radio_button color ()
 Create a system-defined radio_button that represent color radio_button.
 
static radio_button color (const drawing::point &location)
 Create a system-defined radio_button that represent color radio_button with specified location.
 
static radio_button color (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent color radio_button with specified location, and size.
 
static radio_button color (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent color radio_button with specified location, size, and name.
 
static radio_button color (bool checked)
 Create a system-defined radio_button that represent color radio_button with specified and check_state.
 
static radio_button color (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent color radio_button with specified check_state, and location.
 
static radio_button color (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent color radio_button with specified check_state, location, and size.
 
static radio_button color (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent color radio_button with specified check_state, location, size, and name.
 
static radio_button color (const control &parent)
 Create a system-defined radio_button that represent color radio_button with specified parent.
 
static radio_button color (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent color radio_button with specified parent, and location.
 
static radio_button color (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent color radio_button with specified parent, location, and size.
 
static radio_button color (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent color radio_button with specified parent, location, size, and name.
 
static radio_button color (const control &parent, bool checked)
 Create a system-defined radio_button that represent color radio_button with specified parent, and check_state.
 
static radio_button color (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent color radio_button with specified parent, check_state, and location.
 
static radio_button color (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent color radio_button with specified parent, check_state, location, and size.
 
static radio_button color (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent color radio_button with specified parent, check_state, location, size, and name.
 
static radio_button contents ()
 Create a system-defined radio_button that represent contents radio_button.
 
static radio_button contents (const drawing::point &location)
 Create a system-defined radio_button that represent contents radio_button with specified location.
 
static radio_button contents (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent contents radio_button with specified location, and size.
 
static radio_button contents (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent contents radio_button with specified location, size, and name.
 
static radio_button contents (bool checked)
 Create a system-defined radio_button that represent contents radio_button with specified and check_state.
 
static radio_button contents (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent contents radio_button with specified check_state, and location.
 
static radio_button contents (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent contents radio_button with specified check_state, location, and size.
 
static radio_button contents (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent contents radio_button with specified check_state, location, size, and name.
 
static radio_button contents (const control &parent)
 Create a system-defined radio_button that represent contents radio_button with specified parent.
 
static radio_button contents (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent contents radio_button with specified parent, and location.
 
static radio_button contents (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent contents radio_button with specified parent, location, and size.
 
static radio_button contents (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent contents radio_button with specified parent, location, size, and name.
 
static radio_button contents (const control &parent, bool checked)
 Create a system-defined radio_button that represent contents radio_button with specified parent, and check_state.
 
static radio_button contents (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent contents radio_button with specified parent, check_state, and location.
 
static radio_button contents (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent contents radio_button with specified parent, check_state, location, and size.
 
static radio_button contents (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent contents radio_button with specified parent, check_state, location, size, and name.
 
static radio_button convert ()
 Create a system-defined radio_button that represent convert radio_button.
 
static radio_button convert (const drawing::point &location)
 Create a system-defined radio_button that represent convert radio_button with specified location.
 
static radio_button convert (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent convert radio_button with specified location, and size.
 
static radio_button convert (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent convert radio_button with specified location, size, and name.
 
static radio_button convert (bool checked)
 Create a system-defined radio_button that represent convert radio_button with specified and check_state.
 
static radio_button convert (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent convert radio_button with specified check_state, and location.
 
static radio_button convert (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent convert radio_button with specified check_state, location, and size.
 
static radio_button convert (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent convert radio_button with specified check_state, location, size, and name.
 
static radio_button convert (const control &parent)
 Create a system-defined radio_button that represent convert radio_button with specified parent.
 
static radio_button convert (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent convert radio_button with specified parent, and location.
 
static radio_button convert (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent convert radio_button with specified parent, location, and size.
 
static radio_button convert (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent convert radio_button with specified parent, location, size, and name.
 
static radio_button convert (const control &parent, bool checked)
 Create a system-defined radio_button that represent convert radio_button with specified parent, and check_state.
 
static radio_button convert (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent convert radio_button with specified parent, check_state, and location.
 
static radio_button convert (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent convert radio_button with specified parent, check_state, location, and size.
 
static radio_button convert (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent convert radio_button with specified parent, check_state, location, size, and name.
 
static radio_button copy ()
 Create a system-defined radio_button that represent copy radio_button.
 
static radio_button copy (const drawing::point &location)
 Create a system-defined radio_button that represent copy radio_button with specified location.
 
static radio_button copy (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent copy radio_button with specified location, and size.
 
static radio_button copy (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent copy radio_button with specified location, size, and name.
 
static radio_button copy (bool checked)
 Create a system-defined radio_button that represent copy radio_button with specified and check_state.
 
static radio_button copy (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent copy radio_button with specified check_state, and location.
 
static radio_button copy (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent copy radio_button with specified check_state, location, and size.
 
static radio_button copy (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent copy radio_button with specified check_state, location, size, and name.
 
static radio_button copy (const control &parent)
 Create a system-defined radio_button that represent copy radio_button with specified parent.
 
static radio_button copy (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent copy radio_button with specified parent, and location.
 
static radio_button copy (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent copy radio_button with specified parent, location, and size.
 
static radio_button copy (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent copy radio_button with specified parent, location, size, and name.
 
static radio_button copy (const control &parent, bool checked)
 Create a system-defined radio_button that represent copy radio_button with specified parent, and check_state.
 
static radio_button copy (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent copy radio_button with specified parent, check_state, and location.
 
static radio_button copy (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent copy radio_button with specified parent, check_state, location, and size.
 
static radio_button copy (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent copy radio_button with specified parent, check_state, location, size, and name.
 
static radio_button customize ()
 Create a system-defined radio_button that represent customize radio_button.
 
static radio_button customize (const drawing::point &location)
 Create a system-defined radio_button that represent customize radio_button with specified location.
 
static radio_button customize (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent customize radio_button with specified location, and size.
 
static radio_button customize (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent customize radio_button with specified location, size, and name.
 
static radio_button customize (bool checked)
 Create a system-defined radio_button that represent customize radio_button with specified and check_state.
 
static radio_button customize (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent customize radio_button with specified check_state, and location.
 
static radio_button customize (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent customize radio_button with specified check_state, location, and size.
 
static radio_button customize (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent customize radio_button with specified check_state, location, size, and name.
 
static radio_button customize (const control &parent)
 Create a system-defined radio_button that represent customize radio_button with specified parent.
 
static radio_button customize (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent customize radio_button with specified parent, and location.
 
static radio_button customize (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent customize radio_button with specified parent, location, and size.
 
static radio_button customize (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent customize radio_button with specified parent, location, size, and name.
 
static radio_button customize (const control &parent, bool checked)
 Create a system-defined radio_button that represent customize radio_button with specified parent, and check_state.
 
static radio_button customize (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent customize radio_button with specified parent, check_state, and location.
 
static radio_button customize (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent customize radio_button with specified parent, check_state, location, and size.
 
static radio_button customize (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent customize radio_button with specified parent, check_state, location, size, and name.
 
static radio_button cut ()
 Create a system-defined radio_button that represent cut radio_button.
 
static radio_button cut (const drawing::point &location)
 Create a system-defined radio_button that represent cut radio_button with specified location.
 
static radio_button cut (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cut radio_button with specified location, and size.
 
static radio_button cut (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cut radio_button with specified location, size, and name.
 
static radio_button cut (bool checked)
 Create a system-defined radio_button that represent cut radio_button with specified and check_state.
 
static radio_button cut (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cut radio_button with specified check_state, and location.
 
static radio_button cut (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cut radio_button with specified check_state, location, and size.
 
static radio_button cut (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cut radio_button with specified check_state, location, size, and name.
 
static radio_button cut (const control &parent)
 Create a system-defined radio_button that represent cut radio_button with specified parent.
 
static radio_button cut (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent cut radio_button with specified parent, and location.
 
static radio_button cut (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cut radio_button with specified parent, location, and size.
 
static radio_button cut (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cut radio_button with specified parent, location, size, and name.
 
static radio_button cut (const control &parent, bool checked)
 Create a system-defined radio_button that represent cut radio_button with specified parent, and check_state.
 
static radio_button cut (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent cut radio_button with specified parent, check_state, and location.
 
static radio_button cut (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent cut radio_button with specified parent, check_state, location, and size.
 
static radio_button cut (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent cut radio_button with specified parent, check_state, location, size, and name.
 
static radio_button del ()
 Create a system-defined radio_button that represent del radio_button.
 
static radio_button del (const drawing::point &location)
 Create a system-defined radio_button that represent del radio_button with specified location.
 
static radio_button del (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent del radio_button with specified location, and size.
 
static radio_button del (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent del radio_button with specified location, size, and name.
 
static radio_button del (bool checked)
 Create a system-defined radio_button that represent del radio_button with specified and check_state.
 
static radio_button del (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent del radio_button with specified check_state, and location.
 
static radio_button del (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent del radio_button with specified check_state, location, and size.
 
static radio_button del (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent del radio_button with specified check_state, location, size, and name.
 
static radio_button del (const control &parent)
 Create a system-defined radio_button that represent del radio_button with specified parent.
 
static radio_button del (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent del radio_button with specified parent, and location.
 
static radio_button del (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent del radio_button with specified parent, location, and size.
 
static radio_button del (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent del radio_button with specified parent, location, size, and name.
 
static radio_button del (const control &parent, bool checked)
 Create a system-defined radio_button that represent del radio_button with specified parent, and check_state.
 
static radio_button del (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent del radio_button with specified parent, check_state, and location.
 
static radio_button del (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent del radio_button with specified parent, check_state, location, and size.
 
static radio_button del (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent del radio_button with specified parent, check_state, location, size, and name.
 
static radio_button descending ()
 Create a system-defined radio_button that represent descending radio_button.
 
static radio_button descending (const drawing::point &location)
 Create a system-defined radio_button that represent descending radio_button with specified location.
 
static radio_button descending (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent descending radio_button with specified location, and size.
 
static radio_button descending (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent descending radio_button with specified location, size, and name.
 
static radio_button descending (bool checked)
 Create a system-defined radio_button that represent descending radio_button with specified and check_state.
 
static radio_button descending (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent descending radio_button with specified check_state, and location.
 
static radio_button descending (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent descending radio_button with specified check_state, location, and size.
 
static radio_button descending (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent descending radio_button with specified check_state, location, size, and name.
 
static radio_button descending (const control &parent)
 Create a system-defined radio_button that represent descending radio_button with specified parent.
 
static radio_button descending (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent descending radio_button with specified parent, and location.
 
static radio_button descending (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent descending radio_button with specified parent, location, and size.
 
static radio_button descending (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent descending radio_button with specified parent, location, size, and name.
 
static radio_button descending (const control &parent, bool checked)
 Create a system-defined radio_button that represent descending radio_button with specified parent, and check_state.
 
static radio_button descending (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent descending radio_button with specified parent, check_state, and location.
 
static radio_button descending (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent descending radio_button with specified parent, check_state, location, and size.
 
static radio_button descending (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent descending radio_button with specified parent, check_state, location, size, and name.
 
static radio_button down ()
 Create a system-defined radio_button that represent down radio_button.
 
static radio_button down (const drawing::point &location)
 Create a system-defined radio_button that represent down radio_button with specified location.
 
static radio_button down (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent down radio_button with specified location, and size.
 
static radio_button down (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent down radio_button with specified location, size, and name.
 
static radio_button down (bool checked)
 Create a system-defined radio_button that represent down radio_button with specified and check_state.
 
static radio_button down (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent down radio_button with specified check_state, and location.
 
static radio_button down (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent down radio_button with specified check_state, location, and size.
 
static radio_button down (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent down radio_button with specified check_state, location, size, and name.
 
static radio_button down (const control &parent)
 Create a system-defined radio_button that represent down radio_button with specified parent.
 
static radio_button down (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent down radio_button with specified parent, and location.
 
static radio_button down (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent down radio_button with specified parent, location, and size.
 
static radio_button down (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent down radio_button with specified parent, location, size, and name.
 
static radio_button down (const control &parent, bool checked)
 Create a system-defined radio_button that represent down radio_button with specified parent, and check_state.
 
static radio_button down (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent down radio_button with specified parent, check_state, and location.
 
static radio_button down (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent down radio_button with specified parent, check_state, location, and size.
 
static radio_button down (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent down radio_button with specified parent, check_state, location, size, and name.
 
static radio_button edit ()
 Create a system-defined radio_button that represent edit radio_button.
 
static radio_button edit (const drawing::point &location)
 Create a system-defined radio_button that represent edit radio_button with specified location.
 
static radio_button edit (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent edit radio_button with specified location, and size.
 
static radio_button edit (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent edit radio_button with specified location, size, and name.
 
static radio_button edit (bool checked)
 Create a system-defined radio_button that represent edit radio_button with specified and check_state.
 
static radio_button edit (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent edit radio_button with specified check_state, and location.
 
static radio_button edit (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent edit radio_button with specified check_state, location, and size.
 
static radio_button edit (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent edit radio_button with specified check_state, location, size, and name.
 
static radio_button edit (const control &parent)
 Create a system-defined radio_button that represent edit radio_button with specified parent.
 
static radio_button edit (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent edit radio_button with specified parent, and location.
 
static radio_button edit (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent edit radio_button with specified parent, location, and size.
 
static radio_button edit (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent edit radio_button with specified parent, location, size, and name.
 
static radio_button edit (const control &parent, bool checked)
 Create a system-defined radio_button that represent edit radio_button with specified parent, and check_state.
 
static radio_button edit (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent edit radio_button with specified parent, check_state, and location.
 
static radio_button edit (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent edit radio_button with specified parent, check_state, location, and size.
 
static radio_button edit (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent edit radio_button with specified parent, check_state, location, size, and name.
 
static radio_button execute ()
 Create a system-defined radio_button that represent execute radio_button.
 
static radio_button execute (const drawing::point &location)
 Create a system-defined radio_button that represent execute radio_button with specified location.
 
static radio_button execute (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent execute radio_button with specified location, and size.
 
static radio_button execute (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent execute radio_button with specified location, size, and name.
 
static radio_button execute (bool checked)
 Create a system-defined radio_button that represent execute radio_button with specified and check_state.
 
static radio_button execute (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent execute radio_button with specified check_state, and location.
 
static radio_button execute (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent execute radio_button with specified check_state, location, and size.
 
static radio_button execute (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent execute radio_button with specified check_state, location, size, and name.
 
static radio_button execute (const control &parent)
 Create a system-defined radio_button that represent execute radio_button with specified parent.
 
static radio_button execute (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent execute radio_button with specified parent, and location.
 
static radio_button execute (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent execute radio_button with specified parent, location, and size.
 
static radio_button execute (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent execute radio_button with specified parent, location, size, and name.
 
static radio_button execute (const control &parent, bool checked)
 Create a system-defined radio_button that represent execute radio_button with specified parent, and check_state.
 
static radio_button execute (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent execute radio_button with specified parent, check_state, and location.
 
static radio_button execute (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent execute radio_button with specified parent, check_state, location, and size.
 
static radio_button execute (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent execute radio_button with specified parent, check_state, location, size, and name.
 
static radio_button exit ()
 Create a system-defined radio_button that represent exit radio_button.
 
static radio_button exit (const drawing::point &location)
 Create a system-defined radio_button that represent exit radio_button with specified location.
 
static radio_button exit (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent exit radio_button with specified location, and size.
 
static radio_button exit (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent exit radio_button with specified location, size, and name.
 
static radio_button exit (bool checked)
 Create a system-defined radio_button that represent exit radio_button with specified and check_state.
 
static radio_button exit (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent exit radio_button with specified check_state, and location.
 
static radio_button exit (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent exit radio_button with specified check_state, location, and size.
 
static radio_button exit (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent exit radio_button with specified check_state, location, size, and name.
 
static radio_button exit (const control &parent)
 Create a system-defined radio_button that represent exit radio_button with specified parent.
 
static radio_button exit (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent exit radio_button with specified parent, and location.
 
static radio_button exit (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent exit radio_button with specified parent, location, and size.
 
static radio_button exit (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent exit radio_button with specified parent, location, size, and name.
 
static radio_button exit (const control &parent, bool checked)
 Create a system-defined radio_button that represent exit radio_button with specified parent, and check_state.
 
static radio_button exit (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent exit radio_button with specified parent, check_state, and location.
 
static radio_button exit (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent exit radio_button with specified parent, check_state, location, and size.
 
static radio_button exit (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent exit radio_button with specified parent, check_state, location, size, and name.
 
static radio_button file ()
 Create a system-defined radio_button that represent file radio_button.
 
static radio_button file (const drawing::point &location)
 Create a system-defined radio_button that represent file radio_button with specified location.
 
static radio_button file (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent file radio_button with specified location, and size.
 
static radio_button file (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent file radio_button with specified location, size, and name.
 
static radio_button file (bool checked)
 Create a system-defined radio_button that represent file radio_button with specified and check_state.
 
static radio_button file (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent file radio_button with specified check_state, and location.
 
static radio_button file (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent file radio_button with specified check_state, location, and size.
 
static radio_button file (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent file radio_button with specified check_state, location, size, and name.
 
static radio_button file (const control &parent)
 Create a system-defined radio_button that represent file radio_button with specified parent.
 
static radio_button file (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent file radio_button with specified parent, and location.
 
static radio_button file (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent file radio_button with specified parent, location, and size.
 
static radio_button file (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent file radio_button with specified parent, location, size, and name.
 
static radio_button file (const control &parent, bool checked)
 Create a system-defined radio_button that represent file radio_button with specified parent, and check_state.
 
static radio_button file (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent file radio_button with specified parent, check_state, and location.
 
static radio_button file (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent file radio_button with specified parent, check_state, location, and size.
 
static radio_button file (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent file radio_button with specified parent, check_state, location, size, and name.
 
static radio_button find ()
 Create a system-defined radio_button that represent find radio_button.
 
static radio_button find (const drawing::point &location)
 Create a system-defined radio_button that represent find radio_button with specified location.
 
static radio_button find (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent find radio_button with specified location, and size.
 
static radio_button find (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent find radio_button with specified location, size, and name.
 
static radio_button find (bool checked)
 Create a system-defined radio_button that represent find radio_button with specified and check_state.
 
static radio_button find (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent find radio_button with specified check_state, and location.
 
static radio_button find (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent find radio_button with specified check_state, location, and size.
 
static radio_button find (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent find radio_button with specified check_state, location, size, and name.
 
static radio_button find (const control &parent)
 Create a system-defined radio_button that represent find radio_button with specified parent.
 
static radio_button find (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent find radio_button with specified parent, and location.
 
static radio_button find (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent find radio_button with specified parent, location, and size.
 
static radio_button find (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent find radio_button with specified parent, location, size, and name.
 
static radio_button find (const control &parent, bool checked)
 Create a system-defined radio_button that represent find radio_button with specified parent, and check_state.
 
static radio_button find (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent find radio_button with specified parent, check_state, and location.
 
static radio_button find (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent find radio_button with specified parent, check_state, location, and size.
 
static radio_button find (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent find radio_button with specified parent, check_state, location, size, and name.
 
static radio_button first ()
 Create a system-defined radio_button that represent first radio_button.
 
static radio_button first (const drawing::point &location)
 Create a system-defined radio_button that represent first radio_button with specified location.
 
static radio_button first (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent first radio_button with specified location, and size.
 
static radio_button first (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent first radio_button with specified location, size, and name.
 
static radio_button first (bool checked)
 Create a system-defined radio_button that represent first radio_button with specified and check_state.
 
static radio_button first (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent first radio_button with specified check_state, and location.
 
static radio_button first (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent first radio_button with specified check_state, location, and size.
 
static radio_button first (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent first radio_button with specified check_state, location, size, and name.
 
static radio_button first (const control &parent)
 Create a system-defined radio_button that represent first radio_button with specified parent.
 
static radio_button first (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent first radio_button with specified parent, and location.
 
static radio_button first (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent first radio_button with specified parent, location, and size.
 
static radio_button first (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent first radio_button with specified parent, location, size, and name.
 
static radio_button first (const control &parent, bool checked)
 Create a system-defined radio_button that represent first radio_button with specified parent, and check_state.
 
static radio_button first (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent first radio_button with specified parent, check_state, and location.
 
static radio_button first (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent first radio_button with specified parent, check_state, location, and size.
 
static radio_button first (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent first radio_button with specified parent, check_state, location, size, and name.
 
static radio_button floppy ()
 Create a system-defined radio_button that represent floppy radio_button.
 
static radio_button floppy (const drawing::point &location)
 Create a system-defined radio_button that represent floppy radio_button with specified location.
 
static radio_button floppy (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent floppy radio_button with specified location, and size.
 
static radio_button floppy (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent floppy radio_button with specified location, size, and name.
 
static radio_button floppy (bool checked)
 Create a system-defined radio_button that represent floppy radio_button with specified and check_state.
 
static radio_button floppy (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent floppy radio_button with specified check_state, and location.
 
static radio_button floppy (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent floppy radio_button with specified check_state, location, and size.
 
static radio_button floppy (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent floppy radio_button with specified check_state, location, size, and name.
 
static radio_button floppy (const control &parent)
 Create a system-defined radio_button that represent floppy radio_button with specified parent.
 
static radio_button floppy (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, and location.
 
static radio_button floppy (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, location, and size.
 
static radio_button floppy (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, location, size, and name.
 
static radio_button floppy (const control &parent, bool checked)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, and check_state.
 
static radio_button floppy (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, check_state, and location.
 
static radio_button floppy (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, check_state, location, and size.
 
static radio_button floppy (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent floppy radio_button with specified parent, check_state, location, size, and name.
 
static radio_button font ()
 Create a system-defined radio_button that represent font radio_button.
 
static radio_button font (const drawing::point &location)
 Create a system-defined radio_button that represent font radio_button with specified location.
 
static radio_button font (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent font radio_button with specified location, and size.
 
static radio_button font (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent font radio_button with specified location, size, and name.
 
static radio_button font (bool checked)
 Create a system-defined radio_button that represent font radio_button with specified and check_state.
 
static radio_button font (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent font radio_button with specified check_state, and location.
 
static radio_button font (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent font radio_button with specified check_state, location, and size.
 
static radio_button font (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent font radio_button with specified check_state, location, size, and name.
 
static radio_button font (const control &parent)
 Create a system-defined radio_button that represent font radio_button with specified parent.
 
static radio_button font (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent font radio_button with specified parent, and location.
 
static radio_button font (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent font radio_button with specified parent, location, and size.
 
static radio_button font (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent font radio_button with specified parent, location, size, and name.
 
static radio_button font (const control &parent, bool checked)
 Create a system-defined radio_button that represent font radio_button with specified parent, and check_state.
 
static radio_button font (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent font radio_button with specified parent, check_state, and location.
 
static radio_button font (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent font radio_button with specified parent, check_state, location, and size.
 
static radio_button font (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent font radio_button with specified parent, check_state, location, size, and name.
 
static radio_button forward ()
 Create a system-defined radio_button that represent forward radio_button.
 
static radio_button forward (const drawing::point &location)
 Create a system-defined radio_button that represent forward radio_button with specified location.
 
static radio_button forward (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent forward radio_button with specified location, and size.
 
static radio_button forward (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent forward radio_button with specified location, size, and name.
 
static radio_button forward (bool checked)
 Create a system-defined radio_button that represent forward radio_button with specified and check_state.
 
static radio_button forward (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent forward radio_button with specified check_state, and location.
 
static radio_button forward (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent forward radio_button with specified check_state, location, and size.
 
static radio_button forward (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent forward radio_button with specified check_state, location, size, and name.
 
static radio_button forward (const control &parent)
 Create a system-defined radio_button that represent forward radio_button with specified parent.
 
static radio_button forward (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent forward radio_button with specified parent, and location.
 
static radio_button forward (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent forward radio_button with specified parent, location, and size.
 
static radio_button forward (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent forward radio_button with specified parent, location, size, and name.
 
static radio_button forward (const control &parent, bool checked)
 Create a system-defined radio_button that represent forward radio_button with specified parent, and check_state.
 
static radio_button forward (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent forward radio_button with specified parent, check_state, and location.
 
static radio_button forward (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent forward radio_button with specified parent, check_state, location, and size.
 
static radio_button forward (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent forward radio_button with specified parent, check_state, location, size, and name.
 
static radio_button harddisk ()
 Create a system-defined radio_button that represent harddisk radio_button.
 
static radio_button harddisk (const drawing::point &location)
 Create a system-defined radio_button that represent harddisk radio_button with specified location.
 
static radio_button harddisk (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent harddisk radio_button with specified location, and size.
 
static radio_button harddisk (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent harddisk radio_button with specified location, size, and name.
 
static radio_button harddisk (bool checked)
 Create a system-defined radio_button that represent harddisk radio_button with specified and check_state.
 
static radio_button harddisk (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent harddisk radio_button with specified check_state, and location.
 
static radio_button harddisk (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent harddisk radio_button with specified check_state, location, and size.
 
static radio_button harddisk (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent harddisk radio_button with specified check_state, location, size, and name.
 
static radio_button harddisk (const control &parent)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent.
 
static radio_button harddisk (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, and location.
 
static radio_button harddisk (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, location, and size.
 
static radio_button harddisk (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, location, size, and name.
 
static radio_button harddisk (const control &parent, bool checked)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, and check_state.
 
static radio_button harddisk (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, check_state, and location.
 
static radio_button harddisk (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, check_state, location, and size.
 
static radio_button harddisk (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent harddisk radio_button with specified parent, check_state, location, size, and name.
 
static radio_button help ()
 Create a system-defined radio_button that represent help radio_button.
 
static radio_button help (const drawing::point &location)
 Create a system-defined radio_button that represent help radio_button with specified location.
 
static radio_button help (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent help radio_button with specified location, and size.
 
static radio_button help (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent help radio_button with specified location, size, and name.
 
static radio_button help (bool checked)
 Create a system-defined radio_button that represent help radio_button with specified and check_state.
 
static radio_button help (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent help radio_button with specified check_state, and location.
 
static radio_button help (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent help radio_button with specified check_state, location, and size.
 
static radio_button help (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent help radio_button with specified check_state, location, size, and name.
 
static radio_button help (const control &parent)
 Create a system-defined radio_button that represent help radio_button with specified parent.
 
static radio_button help (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent help radio_button with specified parent, and location.
 
static radio_button help (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent help radio_button with specified parent, location, and size.
 
static radio_button help (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent help radio_button with specified parent, location, size, and name.
 
static radio_button help (const control &parent, bool checked)
 Create a system-defined radio_button that represent help radio_button with specified parent, and check_state.
 
static radio_button help (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent help radio_button with specified parent, check_state, and location.
 
static radio_button help (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent help radio_button with specified parent, check_state, location, and size.
 
static radio_button help (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent help radio_button with specified parent, check_state, location, size, and name.
 
static radio_button home ()
 Create a system-defined radio_button that represent home radio_button.
 
static radio_button home (const drawing::point &location)
 Create a system-defined radio_button that represent home radio_button with specified location.
 
static radio_button home (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent home radio_button with specified location, and size.
 
static radio_button home (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent home radio_button with specified location, size, and name.
 
static radio_button home (bool checked)
 Create a system-defined radio_button that represent home radio_button with specified and check_state.
 
static radio_button home (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent home radio_button with specified check_state, and location.
 
static radio_button home (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent home radio_button with specified check_state, location, and size.
 
static radio_button home (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent home radio_button with specified check_state, location, size, and name.
 
static radio_button home (const control &parent)
 Create a system-defined radio_button that represent home radio_button with specified parent.
 
static radio_button home (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent home radio_button with specified parent, and location.
 
static radio_button home (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent home radio_button with specified parent, location, and size.
 
static radio_button home (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent home radio_button with specified parent, location, size, and name.
 
static radio_button home (const control &parent, bool checked)
 Create a system-defined radio_button that represent home radio_button with specified parent, and check_state.
 
static radio_button home (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent home radio_button with specified parent, check_state, and location.
 
static radio_button home (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent home radio_button with specified parent, check_state, location, and size.
 
static radio_button home (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent home radio_button with specified parent, check_state, location, size, and name.
 
static radio_button ignore ()
 Create a system-defined radio_button that represent ignore radio_button.
 
static radio_button ignore (const drawing::point &location)
 Create a system-defined radio_button that represent ignore radio_button with specified location.
 
static radio_button ignore (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ignore radio_button with specified location, and size.
 
static radio_button ignore (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ignore radio_button with specified location, size, and name.
 
static radio_button ignore (bool checked)
 Create a system-defined radio_button that represent ignore radio_button with specified and check_state.
 
static radio_button ignore (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent ignore radio_button with specified check_state, and location.
 
static radio_button ignore (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ignore radio_button with specified check_state, location, and size.
 
static radio_button ignore (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ignore radio_button with specified check_state, location, size, and name.
 
static radio_button ignore (const control &parent)
 Create a system-defined radio_button that represent ignore radio_button with specified parent.
 
static radio_button ignore (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, and location.
 
static radio_button ignore (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, location, and size.
 
static radio_button ignore (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, location, size, and name.
 
static radio_button ignore (const control &parent, bool checked)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, and check_state.
 
static radio_button ignore (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, check_state, and location.
 
static radio_button ignore (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, check_state, location, and size.
 
static radio_button ignore (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent ignore radio_button with specified parent, check_state, location, size, and name.
 
static radio_button indent ()
 Create a system-defined radio_button that represent indent radio_button.
 
static radio_button indent (const drawing::point &location)
 Create a system-defined radio_button that represent indent radio_button with specified location.
 
static radio_button indent (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent indent radio_button with specified location, and size.
 
static radio_button indent (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent indent radio_button with specified location, size, and name.
 
static radio_button indent (bool checked)
 Create a system-defined radio_button that represent indent radio_button with specified and check_state.
 
static radio_button indent (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent indent radio_button with specified check_state, and location.
 
static radio_button indent (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent indent radio_button with specified check_state, location, and size.
 
static radio_button indent (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent indent radio_button with specified check_state, location, size, and name.
 
static radio_button indent (const control &parent)
 Create a system-defined radio_button that represent indent radio_button with specified parent.
 
static radio_button indent (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent indent radio_button with specified parent, and location.
 
static radio_button indent (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent indent radio_button with specified parent, location, and size.
 
static radio_button indent (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent indent radio_button with specified parent, location, size, and name.
 
static radio_button indent (const control &parent, bool checked)
 Create a system-defined radio_button that represent indent radio_button with specified parent, and check_state.
 
static radio_button indent (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent indent radio_button with specified parent, check_state, and location.
 
static radio_button indent (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent indent radio_button with specified parent, check_state, location, and size.
 
static radio_button indent (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent indent radio_button with specified parent, check_state, location, size, and name.
 
static radio_button index ()
 Create a system-defined radio_button that represent index radio_button.
 
static radio_button index (const drawing::point &location)
 Create a system-defined radio_button that represent index radio_button with specified location.
 
static radio_button index (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent index radio_button with specified location, and size.
 
static radio_button index (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent index radio_button with specified location, size, and name.
 
static radio_button index (bool checked)
 Create a system-defined radio_button that represent index radio_button with specified and check_state.
 
static radio_button index (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent index radio_button with specified check_state, and location.
 
static radio_button index (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent index radio_button with specified check_state, location, and size.
 
static radio_button index (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent index radio_button with specified check_state, location, size, and name.
 
static radio_button index (const control &parent)
 Create a system-defined radio_button that represent index radio_button with specified parent.
 
static radio_button index (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent index radio_button with specified parent, and location.
 
static radio_button index (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent index radio_button with specified parent, location, and size.
 
static radio_button index (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent index radio_button with specified parent, location, size, and name.
 
static radio_button index (const control &parent, bool checked)
 Create a system-defined radio_button that represent index radio_button with specified parent, and check_state.
 
static radio_button index (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent index radio_button with specified parent, check_state, and location.
 
static radio_button index (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent index radio_button with specified parent, check_state, location, and size.
 
static radio_button index (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent index radio_button with specified parent, check_state, location, size, and name.
 
static radio_button info ()
 Create a system-defined radio_button that represent info radio_button.
 
static radio_button info (const drawing::point &location)
 Create a system-defined radio_button that represent info radio_button with specified location.
 
static radio_button info (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent info radio_button with specified location, and size.
 
static radio_button info (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent info radio_button with specified location, size, and name.
 
static radio_button info (bool checked)
 Create a system-defined radio_button that represent info radio_button with specified and check_state.
 
static radio_button info (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent info radio_button with specified check_state, and location.
 
static radio_button info (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent info radio_button with specified check_state, location, and size.
 
static radio_button info (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent info radio_button with specified check_state, location, size, and name.
 
static radio_button info (const control &parent)
 Create a system-defined radio_button that represent info radio_button with specified parent.
 
static radio_button info (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent info radio_button with specified parent, and location.
 
static radio_button info (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent info radio_button with specified parent, location, and size.
 
static radio_button info (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent info radio_button with specified parent, location, size, and name.
 
static radio_button info (const control &parent, bool checked)
 Create a system-defined radio_button that represent info radio_button with specified parent, and check_state.
 
static radio_button info (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent info radio_button with specified parent, check_state, and location.
 
static radio_button info (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent info radio_button with specified parent, check_state, location, and size.
 
static radio_button info (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent info radio_button with specified parent, check_state, location, size, and name.
 
static radio_button italic ()
 Create a system-defined radio_button that represent italic radio_button.
 
static radio_button italic (const drawing::point &location)
 Create a system-defined radio_button that represent italic radio_button with specified location.
 
static radio_button italic (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent italic radio_button with specified location, and size.
 
static radio_button italic (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent italic radio_button with specified location, size, and name.
 
static radio_button italic (bool checked)
 Create a system-defined radio_button that represent italic radio_button with specified and check_state.
 
static radio_button italic (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent italic radio_button with specified check_state, and location.
 
static radio_button italic (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent italic radio_button with specified check_state, location, and size.
 
static radio_button italic (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent italic radio_button with specified check_state, location, size, and name.
 
static radio_button italic (const control &parent)
 Create a system-defined radio_button that represent italic radio_button with specified parent.
 
static radio_button italic (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent italic radio_button with specified parent, and location.
 
static radio_button italic (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent italic radio_button with specified parent, location, and size.
 
static radio_button italic (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent italic radio_button with specified parent, location, size, and name.
 
static radio_button italic (const control &parent, bool checked)
 Create a system-defined radio_button that represent italic radio_button with specified parent, and check_state.
 
static radio_button italic (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent italic radio_button with specified parent, check_state, and location.
 
static radio_button italic (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent italic radio_button with specified parent, check_state, location, and size.
 
static radio_button italic (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent italic radio_button with specified parent, check_state, location, size, and name.
 
static radio_button justified ()
 Create a system-defined radio_button that represent justified radio_button.
 
static radio_button justified (const drawing::point &location)
 Create a system-defined radio_button that represent justified radio_button with specified location.
 
static radio_button justified (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent justified radio_button with specified location, and size.
 
static radio_button justified (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent justified radio_button with specified location, size, and name.
 
static radio_button justified (bool checked)
 Create a system-defined radio_button that represent justified radio_button with specified and check_state.
 
static radio_button justified (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent justified radio_button with specified check_state, and location.
 
static radio_button justified (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent justified radio_button with specified check_state, location, and size.
 
static radio_button justified (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent justified radio_button with specified check_state, location, size, and name.
 
static radio_button justified (const control &parent)
 Create a system-defined radio_button that represent justified radio_button with specified parent.
 
static radio_button justified (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent justified radio_button with specified parent, and location.
 
static radio_button justified (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent justified radio_button with specified parent, location, and size.
 
static radio_button justified (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent justified radio_button with specified parent, location, size, and name.
 
static radio_button justified (const control &parent, bool checked)
 Create a system-defined radio_button that represent justified radio_button with specified parent, and check_state.
 
static radio_button justified (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent justified radio_button with specified parent, check_state, and location.
 
static radio_button justified (const control &parent, bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent justified radio_button with specified parent, check_state, location, and size.
 
static radio_button justified (const control &parent, bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent justified radio_button with specified parent, check_state, location, size, and name.
 
static radio_button jump_to ()
 Create a system-defined radio_button that represent jump_to radio_button.
 
static radio_button jump_to (const drawing::point &location)
 Create a system-defined radio_button that represent jump_to radio_button with specified location.
 
static radio_button jump_to (const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent jump_to radio_button with specified location, and size.
 
static radio_button jump_to (const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent jump_to radio_button with specified location, size, and name.
 
static radio_button jump_to (bool checked)
 Create a system-defined radio_button that represent jump_to radio_button with specified and check_state.
 
static radio_button jump_to (bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent jump_to radio_button with specified check_state, and location.
 
static radio_button jump_to (bool checked, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent jump_to radio_button with specified check_state, location, and size.
 
static radio_button jump_to (bool checked, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent jump_to radio_button with specified check_state, location, size, and name.
 
static radio_button jump_to (const control &parent)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent.
 
static radio_button jump_to (const control &parent, const drawing::point &location)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent, and location.
 
static radio_button jump_to (const control &parent, const drawing::point &location, const drawing::size &size)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent, location, and size.
 
static radio_button jump_to (const control &parent, const drawing::point &location, const drawing::size &size, const xtd::string &name)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent, location, size, and name.
 
static radio_button jump_to (const control &parent, bool checked)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent, and check_state.
 
static radio_button jump_to (const control &parent, bool checked, const drawing::point &location)
 Create a system-defined radio_button that represent jump_to radio_button with specified parent, check_state, and location.
 
static radio_button jump_to (const control &parent, bool