Class CheckedChangedEventArgs
This class serves as an event data for CheckedChangedEventArgs event.
Inheritance
System.Object
CheckedChangedEventArgs
Namespace: Syncfusion.Maui.Buttons
Assembly: Syncfusion.Maui.Buttons.dll
Syntax
public class CheckedChangedEventArgs : EventArgs
Constructors
CheckedChangedEventArgs()
Initializes a new instance of the CheckedChangedEventArgs class.
Declaration
public CheckedChangedEventArgs()
CheckedChangedEventArgs(SfRadioButton, SfRadioButton)
Initializes a new instance of the CheckedChangedEventArgs class.
Declaration
public CheckedChangedEventArgs(SfRadioButton previousItem, SfRadioButton currentItem)
Parameters
Type | Name | Description |
---|---|---|
SfRadioButton | previousItem | previous item. |
SfRadioButton | currentItem | current item. |
Properties
CurrentItem
Gets the currently checked radio button from group.
Declaration
public SfRadioButton CurrentItem { get; }
Property Value
Type |
---|
SfRadioButton |
PreviousItem
Gets the previously checked radio button from group.
Declaration
public SfRadioButton PreviousItem { get; }
Property Value
Type |
---|
SfRadioButton |