ListItemCollection.Add 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將 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)
參數
範例
下列程式碼範例示範如何建立 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)
參數
備註
Add使用 方法將 附加 ListItem 至集合結尾。 這個 方法的實作會採用 ListItem 參數所 item
指定的 ,並將它附加至集合。