C# Class Flood.GUI.Controls.LabeledRadioButton

RadioButton with label.
Inheritance: Control
Mostra file Open project: FloodProject/flood Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
LabeledRadioButton ( Control parent ) : System

Initializes a new instance of the LabeledRadioButton class.

Select ( ) : void

Selects the radio button.

Protected Methods

Method Description
Layout ( Skins skin ) : void
OnKeySpace ( bool down ) : bool

Handler for Space keyboard event.

RenderFocus ( Skins skin ) : void

Renders the focus overlay.

Method Details

LabeledRadioButton() public method

Initializes a new instance of the LabeledRadioButton class.
public LabeledRadioButton ( Control parent ) : System
parent Control Parent control.
return System

Layout() protected method

protected Layout ( Skins skin ) : void
skin Skins
return void

OnKeySpace() protected method

Handler for Space keyboard event.
protected OnKeySpace ( bool down ) : bool
down bool Indicates whether the key was pressed or released.
return bool

RenderFocus() protected method

Renders the focus overlay.
protected RenderFocus ( Skins skin ) : void
skin Skins Skin to use.
return void

Select() public method

Selects the radio button.
public Select ( ) : void
return void