# ItemClickEventHandler

Namespace: **Wisej.Web**

Assembly: **Wisej.Framework** (4.0.0.0)

Represents the method that will handle the [ItemClick](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#itemclick) event of a [ListView](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview).

{% tabs %}
{% tab title="C#" %}

```csharp
public delegate void ItemClickEventHandler(Object sender, ItemClickEventArgs e)
```

{% endtab %}

{% tab title="VB.NET" %}

```visual-basic
Public Delegate Sub ItemClickEventHandler(ByVal sender As [Object], ByVal e As ItemClickEventArgs)
```

{% endtab %}
{% endtabs %}

## Parameters

| Name       | Type                                                                                                             | Description                                                                                                                                      |
| ---------- | ---------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------ |
| **sender** | [Object](https://docs.microsoft.com/dotnet/api/system.object)                                                    | The source of the event.                                                                                                                         |
| **e**      | [ItemClickEventArgs](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.itemclickeventargs) | A [ItemClickEventArgs](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/wisej.web.itemclickeventargs) that contains the event data. |

## Fired By

| Name                                                                                                         | Description                                      |
| ------------------------------------------------------------------------------------------------------------ | ------------------------------------------------ |
| [ListView.ItemClick](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#itemclick)             | Fired when the item is clicked or tapped.        |
| [ListView.ItemDoubleClick](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#itemdoubleclick) | Fired when the item is double clicked or tapped. |
