ListView.ItemCreated Event

Definition

Occurs when an item is created in a ListView control.

public:
 event EventHandler<System::Web::UI::WebControls::ListViewItemEventArgs ^> ^ ItemCreated;
public event EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> ItemCreated;
member this.ItemCreated : EventHandler<System.Web.UI.WebControls.ListViewItemEventArgs> 
Public Custom Event ItemCreated As EventHandler(Of ListViewItemEventArgs) 

Event Type

Remarks

Before the ListView control can be rendered, a ListViewItem object must be created for each item in the control. The ItemCreated event is raised when each item in the ListView control is created. This enables you to perform a custom routine whenever this event occurs, such as adding custom content to an item.

A ListViewItemEventArgs object is passed to the event handler, which enables you to access the properties of the item that is being created. To access a specific control in the item, use the FindControl method of the ListViewItem object that is contained in the Item property of the ListViewItemEventArgs object. You can determine which item type (data item, insert item, empty item) is being created by using the ItemType property.

For more information about how to handle events, see Handling and Raising Events.

Applies to

See also