EntrySet.Controls Namespace
RadioButton Component
RadioButton controls present a set of two or more mutually exclusive choices to the user. While radio buttons and check boxes may appear to function similarly, there is an important difference: when a user selects a radio button, the other radio buttons in the same group cannot be selected as well.

PureComponents RadioButton controls present a set of two or more mutually exclusive choices to the user. While radio buttons and check boxes may appear to function similarly, there is an important difference: when a user selects a radio button, the other radio buttons in the same group cannot be selected as well. In contrast, any number of check boxes can be selected.
When a RadioButton control is clicked, its Checked property is set to true and the Click event handler is called. The CheckedChanged event is raised when the value of the Checked property changes. The text displayed within the control is set with the Text property.
Values
PureComponents RadioButton has property, which can have values according to the value the radiobutton is in. For each value you can define these properties: ValueForCheck, ValueForUncheck and ValueForIndeterminate.
Visible and Enable Controls
The value of radiobutton can also influence another controls. In EnableControl property the control can be set. This control can be either enabled if the radiobutton is checked or it can be disabled if the radiobutton is unchecked. Similarly the VisibleControl property manages the control visibility. If the radiobutton is checked the control is visible. If the radiobutton is unchecked the control is invisible.
If you wan to manage more controls at the same time, enter these controls into the panel and set this panel in EnableControl property or VisibleControl property.
Images
RadioButton can also display an image, which can be placed in front of the text or behind the text. Image is set by the Image property and its placing determines the ImageAlign property.