Top "Listbox" questions

A graphical user interface element that allows the user to select one or more items from a list.

How to scroll to bottom of ListBox?

I am using a Winforms ListBox as a small list of events, and want to populate it so that the …

c# winforms listbox
WPF/C# Binding custom object list data to a ListBox?

I've ran into a bit of a wall with being able to bind data of my custom object list to …

c# wpf list listbox listboxitems
How do I select all items in a listbox on checkbox checked?

I need to select all items in a ListBox when a CheckBox is clicked. Is it possible to select all …

c# winforms listbox .net-2.0
Getting all selected values from an ASP ListBox

I have an ASP ListBox that has the SelectionMode set to "Multiple". Is there any way of retreiving ALL selected …

c# asp.net webforms listbox
How can I disable horizontal scrolling in a WPF ListBox?

This seems to be an absurdly simple question but Google and Stack Overflow searches yield nothing. How can I disable …

c# .net wpf visual-studio listbox
adding a ListBoxItem in a ListBox in C#?

I know that: String test = "test"; ListBox.Items.Add(test); or String test = "test"; int index = 1; ListBox.Items.Insert(index, …

c# wpf string listbox listboxitem
Get selected item in listbox and call another function storing the selected for it

I have a canvas that calls createCategoryMeny(x) when it is clicked. This function just creates a Toplevel() window, def …

python listbox tkinter tk
A better way of forcing data bound WPF ListBox to update?

I have WPF ListBox which is bound to a ObservableCollection, when the collection changes, all items update their position. The …

wpf data-binding listbox observablecollection
How to add item to the beginning of the list in ListBox?

Is there a way to add item to a WinForms ListBox, to the beginning of the list without rewriting entire …

c# winforms listbox
WPF ListBox that lays out its items horizontally

I'm trying to write a WPF application for displaying images from a selection. I want to display all of the …

wpf data-binding listbox