共用方式為


ListItemCollection.Add 方法

定義

ListItem 附加到集合的結尾。

多載

Add(String)

ListItem 附加到表示指定字串的集合結尾。

Add(ListItem)

將指定的 ListItem 附加到集合的結尾。

Add(String)

ListItem 附加到表示指定字串的集合結尾。

public:
 void Add(System::String ^ item);
public void Add (string item);
member this.Add : string -> unit
Public Sub Add (item As String)

參數

item
String

String,表示要加入至集合結尾的項目。

範例

下列程式碼範例示範如何建立 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()

備註

Add使用 方法將 附加 ListItem 至集合結尾。 這個 方法的實作會建立 來 ListItem 表示 參數所 item 指定的文字。 ListItem這會接著附加至集合。

另請參閱

適用於

Add(ListItem)

將指定的 ListItem 附加到集合的結尾。

public:
 void Add(System::Web::UI::WebControls::ListItem ^ item);
public void Add (System.Web.UI.WebControls.ListItem item);
member this.Add : System.Web.UI.WebControls.ListItem -> unit
Public Sub Add (item As ListItem)

參數

item
ListItem

ListItem,要附加至集合。

備註

Add使用 方法將 附加 ListItem 至集合結尾。 這個 方法的實作會採用 ListItem 參數所 item 指定的 ,並將它附加至集合。

另請參閱

適用於