Click or drag to resize

RadioMenuItem Class

Menu item to choose from a set of options
Inheritance Hierarchy

Namespace:  Eto.Forms
Assembly:  Eto (in Eto.dll) Version: 2.5.3-dev
Syntax
public class RadioMenuItem : MenuItem

The RadioMenuItem type exposes the following members.

Constructors
  NameDescription
Public methodRadioMenuItem
Initializes a new instance of the RadioMenuItem class.
Public methodRadioMenuItem(RadioMenuItem)
Initializes a new instance of the RadioMenuItem class.
Public methodRadioMenuItem(RadioCommand, RadioMenuItem)
Initializes a new instance of the RadioMenuItem class with the specified command and controller.
Top
Properties
  NameDescription
Public propertyChecked
Gets or sets a value indicating whether this RadioMenuItem is checked.
Top
Methods
Events
  NameDescription
Public eventCheckedChanged
Event to handle when the Checked property changes.
Top
Fields
  NameDescription
Public fieldStatic memberCheckedChangedEvent
Event identifier for the CheckedChanged event.
Top
Remarks
The RadioMenuItem works with other radio items to present a list of options that the user can select from. When a radio button is toggled on, all others that are linked together will be toggled off. To link radio buttons together, use the [C:Eto.Forms.RadioMenuItem(RadioMenuItem)] constructor to specify the controller radio item, which can be created with the default constructor.
See Also