Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ListView::ItemCreated Event

 

Occurs when an item is created in a ListView control.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web.Extensions (in System.Web.Extensions.dll)

public:
event EventHandler<ListViewItemEventArgs^>^ ItemCreated {
	void add(EventHandler<ListViewItemEventArgs^>^ value);
	void remove(EventHandler<ListViewItemEventArgs^>^ value);
}

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 NIB: Consuming Events.

.NET Framework
Available since 3.5
Return to top
Show:
© 2017 Microsoft