# ListViewBindingCompleteEventEventHandler

Namespace: **Wisej.Web**

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

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

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

```csharp
public delegate void ListViewBindingCompleteEventEventHandler(Object sender, ListViewBindingCompleteEventArgs e)
```

{% endtab %}

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

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

{% endtab %}
{% endtabs %}

## Parameters

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

## Fired By

| Name                                                                                                                 | Description                                         |
| -------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------- |
| [ListView.DataBindingComplete](https://docs.wisej.com/api/wisej.web/lists-and-grids/listview/..#databindingcomplete) | Occurs after a data-binding operation has finished. |
