Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Everything / ListBox

ListBox

ListBox

Great Reads

by Michael Shpilt
A WPF tutorial on how to create FilteredListView: A ListView custom control with search filter that uses Throttling.
by Stefan Huy
Tag Listbox Object
by John Pravin
Asynchronous Programming with Task Parallel Library.
by ASP.NET Community
Concept A very common question asked on the ASP.NET Forums is how to bind a ListControl's DataTextField or DataValueField to multiple Columns. The

Latest Articles

by Michael Shpilt
A WPF tutorial on how to create FilteredListView: A ListView custom control with search filter that uses Throttling.
by Stefan Huy
Tag Listbox Object
by John Pravin
Asynchronous Programming with Task Parallel Library.
by ASP.NET Community
Concept A very common question asked on the ASP.NET Forums is how to bind a ListControl's DataTextField or DataValueField to multiple Columns. The

All Articles

Sort by Score

ListBox 

by Stefan Huy
Tag Listbox Object
by John Pravin
Asynchronous Programming with Task Parallel Library.
by Evren Yortuçboylu
A checkbox list jQuery UI widget with real time filtering functionality explained
by rmerca
This is an alternative for "Checkbox List With Filtering jQuery Widget"
by Paul_Williams
The difference between ListBox and CheckedListBox DataBinding.
by Nidhi P Bhargava
There is no direct way to remove multiple selected items from ListBox when SelectionMode of ListBox is set to "Multiple". So there is a small solution to handle this situation.In following Example ListBox "lstCity" contains multiple cities and SelectionMode is set "Multiple".
by Magnus_
public static void RemoveSelected(this ListControl source){ foreach (var item in source.Items.Cast().Where(li => li.Selected).ToList()) source.Items.Remove(item);}protected void btnRemove_Click(object sender, EventArgs e){ lstCity.RemoveSelected();}