Class RadCheckBox
Inheritance
Namespace: Telerik.Maui.Controls
Assembly: Telerik.Maui.Controls.dll
Syntax
public class RadCheckBox : CheckBox, IRadCheckBox, ICheckBox, IView, IElement, ITransform
Constructors
RadCheckBox()
Declaration
public RadCheckBox()
Fields
CheckedColorProperty
Identifies the CheckedColor property.
Declaration
public static readonly BindableProperty CheckedColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CheckedSymbolColorProperty
Identifies the CheckedSymbolColor property.
Declaration
public static readonly BindableProperty CheckedSymbolColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
CornerRadiusProperty
Identifies the CornerRadius property.
Declaration
public static readonly BindableProperty CornerRadiusProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IndeterminateColorProperty
Identifies the IndeterminateColor property.
Declaration
public static readonly BindableProperty IndeterminateColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IndeterminateSymbolColorProperty
Identifies the IndeterminateSymbolColor property.
Declaration
public static readonly BindableProperty IndeterminateSymbolColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsAnimatedProperty
Identifies the IsAnimated property.
Declaration
public static readonly BindableProperty IsAnimatedProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsCheckedProperty
Identifies the IsChecked property.
Declaration
public static readonly BindableProperty IsCheckedProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
IsThreeStateProperty
Identifies the IsThreeState property.
Declaration
public static readonly BindableProperty IsThreeStateProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
LengthProperty
Identifies the Length property.
Declaration
public static readonly BindableProperty LengthProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
StrokeWidthProperty
Identifies the StrokeWidth property.
Declaration
public static readonly BindableProperty StrokeWidthProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
ToggleOnTapProperty
Declaration
public static readonly BindableProperty ToggleOnTapProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
UncheckedColorProperty
Identifies the UncheckedColor property.
Declaration
public static readonly BindableProperty UncheckedColorProperty
Field Value
Microsoft.Maui.Controls.BindableProperty
|
Properties
CheckedColor
Gets or sets the Microsoft.Maui.Graphics.Color applied to the control when it is checked. The default value is Black.
Declaration
public Color CheckedColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
Implements
CheckedSymbolColor
Gets or sets the Microsoft.Maui.Graphics.Color applied to the check symbol of the control. The default value is Black.
Declaration
public Color CheckedSymbolColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
Implements
CornerRadius
Gets or sets the corner radius of the checkbox. If null or value less than 0 is set, the default platform value will be used.
Declaration
public Nullable<double> CornerRadius { get; set; }
Property Value
System.Nullable<System.Double>
|
Implements
IndeterminateColor
Gets or sets the Microsoft.Maui.Graphics.Color applied to the control when it is Indeterminate. The default value is Black.
Declaration
public Color IndeterminateColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
Implements
IndeterminateSymbolColor
Gets or sets the Microsoft.Maui.Graphics.Color applied to the Indeterminate symbol of the control. The default value is Black.
Declaration
public Color IndeterminateSymbolColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
Implements
IsAnimated
Gets or sets a boolean value indicating whether to play animations during state transitions. The default value is true.
Declaration
public bool IsAnimated { get; set; }
Property Value
System.Boolean
|
Implements
IsChecked
Gets or sets a IsChecked. The default value is false.
Declaration
public Nullable<bool> IsChecked { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Implements
IsThreeState
Gets or sets a boolean value indicating if the UI can set the Value of the control to null. The default value is false.
Declaration
public bool IsThreeState { get; set; }
Property Value
System.Boolean
|
Implements
Length
Gets or sets the size of the checkbox.
Declaration
public double Length { get; set; }
Property Value
System.Double
|
Implements
StrokeWidth
Gets or sets the width with which the symbols are drawn.
Declaration
public double StrokeWidth { get; set; }
Property Value
System.Double
|
Implements
UncheckedColor
Gets or sets the Microsoft.Maui.Graphics.Color applied to the control when it is unchecked. The default value is Black.
Declaration
public Color UncheckedColor { get; set; }
Property Value
Microsoft.Maui.Graphics.Color
|
Implements
Methods
GetToggleOnTap(BindableObject)
Declaration
public static RadCheckBox GetToggleOnTap(BindableObject bindable)
Parameters
Microsoft.Maui.Controls.BindableObject
bindable
|
Returns
RadCheckBox
|
OnPropertyChanged(String)
Declaration
protected override void OnPropertyChanged(string propertyName = null)
Parameters
System.String
propertyName
|
SetToggleOnTap(BindableObject, RadCheckBox)
Declaration
public static void SetToggleOnTap(BindableObject bindable, RadCheckBox checkBox)
Parameters
Microsoft.Maui.Controls.BindableObject
bindable
|
RadCheckBox
checkBox
|
Events
IsCheckedChanged
Occurs when the IsChecked property has changed.
Declaration
public event EventHandler<IsCheckedChangedEventArgs> IsCheckedChanged
Event Type
System.EventHandler<IsCheckedChangedEventArgs>
|