New to Telerik UI for .NET MAUIStart a free 30-day trial

Event arguments providing information about a user interaction performed over an item from the RadItemsView control.

Definition

Namespace:Telerik.Maui.Controls.ItemsView

Assembly:Telerik.Maui.Controls.dll

Type Parameters:

TItemView

Syntax:

C#
public abstract class ItemViewInteractionEventArgs<TItemView> : EventArgs where TItemView : ItemView

Inheritance: objectEventArgsItemViewInteractionEventArgs<TItemView>

Derived Classes: ItemViewInteractionEventArgsTreeViewItemViewInteractionEventArgs

Inherited Members EventArgs.Empty

Constructors

Initializes a new instance of the ItemViewInteractionEventArgs<TItemView> class.

C#
protected ItemViewInteractionEventArgs(TItemView view, object item)
Parameters:viewTItemView

Specifies the ItemView from the RadItemsView control for which the interaction is performed.

itemobject

Specifies the data item from the RadItemsView control for which the interaction is performed.

Initializes a new instance of the ItemViewInteractionEventArgs<TItemView> class.

C#
protected ItemViewInteractionEventArgs(TItemView view)
Parameters:viewTItemView

Specifies the ItemView from the RadItemsView control for which the interaction is performed.

Properties

Gets the data item from the RadItemsView control for which the interaction is performed.

C#
public object Item { get; }

View

TItemView

Gets the ItemView from the RadItemsView control for which the interaction is performed.

C#
public TItemView View { get; }