次の方法で共有


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 作成および初期化します。

適用対象