New to Telerik UI for WPFStart a free 30-day trial

A RadioButton control.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
[TelerikToolboxCategory("Buttons")]
public class RadRadioButton : RadioButton

Inheritance: objectRadRadioButton

Derived Classes: RadGeometryRadioButtonRadRibbonRadioButtonSectionColumnsRadioButton

Constructors

Initializes a new instance of the RadRadioButton class.

C#
public RadRadioButton()

Fields

ActivateEvent

RoutedEvent

Identifies the Activate routed event.

C#
public static readonly RoutedEvent ActivateEvent

CornerRadiusProperty

DependencyProperty

Identifies the CornerRadius property.

C#
public static readonly DependencyProperty CornerRadiusProperty

IsBackgroundVisibleProperty

DependencyProperty

Identifies the IsBackgroundVisible property.

C#
public static readonly DependencyProperty IsBackgroundVisibleProperty

Properties

CornerRadius

CornerRadius

Gets or sets a value that represents the degree to which the corners of the control are rounded. This is a dependency property.

C#
public CornerRadius CornerRadius { get; set; }

Sets the visual appearance of the chrome not to render in Normal mode.

C#
[Browsable(false)]
public bool IsBackgroundVisible { get; set; }

Methods

Raises the event.

C#
protected virtual void OnActivate()

Invoked whenever application code or internal processes (such as a rebuilding layout pass) call .

C#
public override void OnApplyTemplate()

Creates a RadRadioButtonAutomationPeer.

C#
protected override AutomationPeer OnCreateAutomationPeer()
Returns:

AutomationPeer

Invoked on got focus.

C#
protected override void OnGotFocus(RoutedEventArgs e)
Parameters:eRoutedEventArgs

Raises the event. This method is invoked whenever is set to true internally.

C#
protected override void OnInitialized(EventArgs e)
Parameters:eEventArgs

The RoutedEventArgs that contains the event data.

Invoke on focus lost.

C#
protected override void OnLostFocus(RoutedEventArgs e)
Parameters:eRoutedEventArgs

Invoke on mouse enter.

C#
protected override void OnMouseEnter(MouseEventArgs e)
Parameters:eMouseEventArgs

Invoke on mouse leave.

C#
protected override void OnMouseLeave(MouseEventArgs e)
Parameters:eMouseEventArgs

Invoke on mouse left button up.

C#
protected override void OnMouseLeftButtonUp(MouseButtonEventArgs e)
Parameters:eMouseButtonEventArgs

Invoke the base OnToggle and execute the associated Command.

C#
protected override void OnToggle()

Events

Occurs when button is clicked.

C#
public event EventHandler<RadRoutedEventArgs> Activate