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

Event arguments providing information about a tapped item in the RadItemsView control.

Definition

Namespace:Telerik.Maui.Controls.ItemsView

Assembly:Telerik.Maui.Controls.dll

Syntax:

C#
public class ItemViewTappedEventArgs : ItemViewInteractionEventArgs

Inheritance: objectEventArgsItemViewInteractionEventArgs<ItemView>ItemViewInteractionEventArgsItemViewTappedEventArgs

Inherited Members ItemViewInteractionEventArgs<ItemView>.ViewItemViewInteractionEventArgs<ItemView>.ItemEventArgs.Empty

Constructors

Initializes a new instance of the ItemViewTappedEventArgs class.

C#
public ItemViewTappedEventArgs(ItemView view, object item)
Parameters:viewItemView

Specifies the tapped ItemView in the RadItemsView control.

itemobject

Specifies the tapped data item in the RadItemsView control.

Initializes a new instance of the ItemViewTappedEventArgs class.

C#
public ItemViewTappedEventArgs(ItemView view)
Parameters:viewItemView

Specifies the tapped ItemView in the RadItemsView control.

Properties

Gets or sets a value indicating whether the event handler has already handled the tap gesture. When set to true, the default handling of the tap gesture is not executed. When set to false, the default handling of the tap gesture is executed.

C#
public bool Handled { get; set; }