ListItemCollection 构造函数

定义

初始化 ListItemCollection 类的新实例。

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

示例

下面的代码示例演示如何创建 ListItemCollection 对象、将项添加到集合以及从集合中删除项。 若要在完全正常工作的示例中查看此代码,请参阅 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()

注解

使用此构造函数使用默认值创建和初始化类的新实例 ListItemCollection

适用于