ListItemCollection Konstruktor

Definition

Initierar en ny instans av ListItemCollection klassen.

public:
 ListItemCollection();
public ListItemCollection();
Public Sub New ()

Exempel

I följande kodexempel visas hur du skapar ListItemCollection objekt, lägger till objekt i samlingarna och tar bort objekt från samlingarna. Information om hur du visar den här koden i ett fullständigt fungerande exempel finns i klassavsnittet WebControl .

// Create a new ListItemCollection.
ListItemCollection listBoxData = new ListItemCollection();
// Add items to the collection.
listBoxData.Add(new ListItem("apples"));
listBoxData.Add(new ListItem("bananas"));
listBoxData.Add(new ListItem("cherries"));
listBoxData.Add("grapes");
listBoxData.Add("mangos");
listBoxData.Add("oranges");
// Set the ListItemCollection as the data source for ListBox1.
ListBox1.DataSource = listBoxData;
ListBox1.DataBind();
' Create a new ListItemCollection.
Dim listBoxData As New ListItemCollection()
' Add items to the collection.
listBoxData.Add(New ListItem("apples"))
listBoxData.Add(New ListItem("bananas"))
listBoxData.Add(New ListItem("cherries"))
listBoxData.Add("grapes")
listBoxData.Add("mangos")
listBoxData.Add("oranges")
' Set the ListItemCollection as the data source for ListBox1.
ListBox1.DataSource = listBoxData
ListBox1.DataBind()

Kommentarer

Använd den här konstruktorn för att skapa och initiera en ny instans av klassen med hjälp av ListItemCollection standardvärden.

Gäller för