ASP Web控制項 ListBox

2021-06-26 15:28:03 字數 1053 閱讀 9234

樣板 <

asp:

listboxid=

"listbox1"

runat

="server"

height

="20px"

width

="73px"

>

<

asp:

listitem

selected

="true"

value

="1"

>第一項

asp:

listitem

>

<

asp:

listitem

value

="2"

>第二項

asp:

listitem

>

<

asp:

listitem

value

="3"

>第三項

asp:

listitem

>

<

asp:

listitem

value

="4"

>第四項

asp:

listitem

>

asp:

listbox

>

新增listitem項

在頁面上選編輯項----新增item項 確定

在listbox屬性頁面裡 item集合

程式設計方式

if (!ispostback)

item.add(string item); item.add(listitem item);//可控制text value enabled屬性

protected

void button1_click(object sender, eventargs e)

選中的value值 item.text顯示的文字 listbox1.selectedindex.tostring()從0開始,選中的為第幾項

ListBox控制項

呈現形態 1 糖醋排骨 2 紅燒雞塊 3 清蒸鮑魚 4 酸菜魚 5 香辣雞翅 select 控制項語句 1 糖醋排骨 2 紅燒雞塊 3 清蒸鮑魚 4 酸菜魚 listbox可多選 可呼叫屬性與dropdownlist相同 ibox selectindex 只返回乙個數值 0,1,2,3 ibox s...

listbox控制項使用

1.屬性列表 selectionmode 元件中條目的選擇型別,即多選 multiple 單選 single rows 列表框中顯示總共多少行 selected 檢測條目是否被選中 selecteditem 返回的型別是listitem,獲得列表框中被選擇的條目 count 列表框中條目的總數 se...

winform控制項之ListBox

前面我們已經介紹了checkedlistbox,listbox和它其實差不多,這裡我們實現個拖拽的小功能,來學習listbox控制項 介面布局這裡很簡單,就是乙個listbox 我們在 裡面為它新增元素,並重新事件來實現拖拽的功能 想要實現拖拽功能,這裡我們必須重新onmousedown,ondra...