Click here to Skip to main content
15,868,016 members
Everything / ListBox

ListBox

ListBox

Great Reads

by Nilay M Joshi
Multiselect Combobox - Custom control for WPF
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();}
by Evren Yortuçboylu
A checkbox list jQuery UI widget with real time filtering functionality explained
by Paul_Williams
The difference between ListBox and CheckedListBox DataBinding.

Latest Articles

by Martin Henke (1971)
Edit Metadata for folders by using desktop.ini features
by Nilay M Joshi
Multiselect Combobox - Custom control for WPF
by Michael Shpilt
A WPF tutorial on how to create FilteredListView: A ListView custom control with search filter that uses Throttling.
by davekahn
An easy way to control the lists of options in multiple related SELECT controls

All Articles