Class
ItemCheckedStateChangedEventArgs

Holds information about the ItemCheckedStateChanged event of ListView/ DataBoundListBox.

Definition

Namespace:Telerik.UI.Xaml.Controls.Data

Assembly:Telerik.WinUI.Controls.dll

Syntax:

cs-api-definition
public class ItemCheckedStateChangedEventArgs : EventArgs

Inheritance: objectEventArgsItemCheckedStateChangedEventArgs

Inherited Members EventArgs.Empty

Constructors

ItemCheckedStateChangedEventArgs(object, bool)

Initializes a new instance of the ItemCheckedStateChangedEventArgs class.

Declaration

cs-api-definition
public ItemCheckedStateChangedEventArgs(object item, bool isChecked)

Parameters

item

object

isChecked

bool

Properties

IsChecked

Gets a value indicating whether the item has been checked or unchecked.

Declaration

cs-api-definition
public bool IsChecked { get; }

Property Value

bool

Item

Gets the data item associated with the event.

Declaration

cs-api-definition
public object Item { get; }

Property Value

object