HOW TO:設定集合中的 Web 伺服器控制項屬性
更新:2007 年 11 月
某些 Web 伺服器控制項屬性不是單純的值或物件,而是集合。例如,ListBox Web 伺服器控制項的個別值會實作為 ListItem 物件的集合。
若要設定集合架構的控制項屬性
將您想要使用的項目具現化,然後將它加入至控制項的集合。
下列程式碼範例會示範如何藉由將 ListItem 物件加入控制項的 Items 集合的方式,將它加入 ListBox 控制項。在第一個範例中,項目是在加入前明確建立的。在第二個範例中,項目是同時間建立和加入的。
Dim li As ListItem = New ListItem("Item 1") ListBox1.Items.Add(li) ' Create and add the items at the same time ListBox1.Items.Add(New ListItem("Apples")) ListBox1.Items.Add(New ListItem("Oranges")) ListBox1.Items.Add(New ListItem("Lemons"))
// Create the items and then add them to the list. ListItem li = new ListItem("Item 1"); ListBox1.Items.Add(li); // Create and add the items at the same time. ListBox1.Items.Add(new ListItem("Apples")); ListBox1.Items.Add(new ListItem("Oranges")); ListBox1.Items.Add(new ListItem("Lemons"));