CheckBox inside ListBox

后端 未结 3 1550
有刺的猬
有刺的猬 2020-12-12 03:44

How to add checkbox inside the listbox. Where ChechBoxList controls is not good for more records, By using listbox user can easily scroll to choose the item.

Geetha.

3条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-12 03:58

    what about checkedListBox ?

     
             Item 1
             Item 2  
             Item 3          
    
    

    To access items on user action

    void checkboxlist1_Clicked(Object sender, EventArgs e) 
    {          
       if (checkBoxList1.SelectedIndex == 1)
       {
           // DoSomething  
       }      
    }
    

提交回复
热议问题