Tagged Questions
A graphical user interface element that allows the user to select one or more items from a list.
48
votes
2answers
20k views
WPF: ListBox vs. ListView - how to choose for data binding
I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to ...
34
votes
2answers
15k views
Force textblock to wrap in WPF listbox
I have a WPF listbox which displays messages. It contains an avatar on the left side and the username and message stacked vertically to the right of the avatar. The layout is fine until the message ...
30
votes
8answers
7k views
There ain't ListBox.SelectionMode=“None”, is there another way to disable selection in a listbox?
How to disable selection in a ListBox?
21
votes
1answer
3k views
WPF listbox empty datatemplate
I was wondering how people handle a ListBox control that has no items? e.g. I want to bind a list of search results but if no results are found i would like to display "No results found".
The way i ...
20
votes
1answer
7k views
How can I disable horizontal scrolling in a WPF listbox?
This seems to be an absurdly simple question but Google and SO searches yield nothing. How can I disable horizontal scrolling in a WPF listbox when items take up more horizontal space than is ...
19
votes
4answers
17k views
Silverlight 3: ListBox DataTemplate HorizontalAlignment
I have a ListBox with it's ItemTemplate bound to a DataTemplate. My problem is I cannot get the elements in the template to stretch to the full width of the ListBox.
<ListBox x:Name="listPeople" ...
15
votes
8answers
9k views
Why is ListBoxFor not selecting items, but ListBox is?
I have the following code in my view:
<%= Html.ListBoxFor(c => c.Project.Categories,
new MultiSelectList(Model.Categories, "Id", "Name", new List<int> { 1, 2 }))%>
<%= ...
14
votes
1answer
5k views
WPF: Remove dotted border around focused item in styled listbox
I have a horizontal listbox with a custom controlIemplate. The selected item gets a dotted frame when focused. Anyone know how to get rid of it?
14
votes
2answers
34k views
WPF Trigger for IsSelected in a DataTemplate for ListBox items
I have a listbox, and I have the following ItemTemplate for it:
<DataTemplate x:Key="ScenarioItemTemplate">
<Border Margin="5,0,5,0"
Background="#FF3C3B3B"
...
13
votes
11answers
5k views
Selecting a Textbox Item in a Listbox does not change the selected item of the listbox
I Have a wpf Listbox that display's a list of textboxes. When I click on the Textbox the Listbox selection does not change. I have to click next to the TextBox to select the listbox item. Is there ...
13
votes
5answers
23k views
Background color of a ListBox item (winforms)
How can I set the background color of a specific item in a System.Windows.Forms.ListBox? I would like to be able to set multiple ones if possible.
12
votes
3answers
7k views
WPF Listbox: Change selected and unfocused style to not be grayed out
I have a really simple WPF ListBox with SelectionMode set to Multiple.
<ListBox SelectionMode="Multiple" />
When the ListBox loses focus it's really hard to tell what's been selected because ...
12
votes
5answers
20k views
WPF Listbox Show Button in ItemTemplate on MouseOver
I have a listbox containing and image and a button. By default the button is hidden. I want to make the button visible whenever I hover over an item in the listbox.
The XAML I am using is below. ...
12
votes
4answers
13k views
Moving items in Dual Listboxes
How can I move items from one list box control to another listbox control using JavaScript in ASP.NET?
12
votes
2answers
10k views
How does ItemContainerGenerator.ContainerFromItem work with a grouped list?
I have a ListBox which until recently was displaying a flat list of items. I was able to use myList.ItemContainerGenerator.ConainerFromItem(thing) to retrieve the ListBoxItem hosting "thing" in the ...
12
votes
3answers
12k views
WPF ListBoxItem selection problem
I have a listbox where the items contain checkboxes:
<ListBox Style="{StaticResource CheckBoxListStyle}" Name="EditListBox">
<ListBox.ItemTemplate>
<DataTemplate>
...
11
votes
3answers
6k views
wpf border control to span the width of listboxItem
Im trying to define a dataTemplate for a business object in my wpf application a collection of which is being bound to a ListBox.
<UserControl.Resources>
<DataTemplate ...
10
votes
1answer
3k views
How to control the scroll position of a ListBox in a MVVM WPF app
I have got a big ListBox with vertical scrolling enabled, my MVVM has New and Edit ICommands.
I am adding new item to the end of the collection but I want the scrollbar also to auto position to the ...
10
votes
1answer
4k views
WPF Drag & drop from ListBox with SelectionMode Multiple
I've almost got this working apart from one little annoying thing...
Because the ListBox selection happens on mouse down, if you start the drag with the mouse down when selecting the last item to ...
10
votes
1answer
5k views
How can I make a column in a listbox in WPF the same width for all items?
I have a ListBox with an ItemTemplate consisting of a TextBlock and a ComboBox. The problem is that the width of the text inside the TextBlock is not the same for each item and the ComboBox controls ...
10
votes
3answers
27k views
ListBox with ItemTemplate (and ScrollBar!)
I have a databound and itemtemplated ListBox:
<ListBox x:Name="lbLista"
ScrollViewer.VerticalScrollBarVisibility="Visible">
<ListBox.ItemTemplate>
<DataTemplate>
...
9
votes
2answers
3k views
WPF ListBox Scroll when item added
I have a WPF ListBox that is set to scroll horizontally. The ItemsSource is bound to an ObservableCollection in my ViewModel class. Every time a new item is added, I want the ListBox to scroll to the ...
9
votes
5answers
3k views
make Listbox items in WPF not selectable
I have a listbox in WPF, and when they select an item, it shows an ugly colors
Can I make all the items non-selectable?
9
votes
2answers
6k views
Double Click a ListBox item to open a browser
I have a ListBox in my wpf window that binds to an ObervableCollection. I want to open the browser if someone clicks on an element of the ListBox (just like a link). Can someone tell me how to do ...
9
votes
2answers
12k views
WPF: ListBox with WrapPanel, vertical scrolling problem
I have a UserControl (XAML below) that has a ListBox that I want to display images inside a WrapPanel, where images are displayed as many as will fit on one row and then wrap onto the next row etc. It ...
9
votes
8answers
7k views
WPF M-V-VM: Get selected items from a ListCollectionView?
I've got a WPF app using the Model-View-ViewModel pattern.
In my ViewModel I've got a ListCollectionView to keep a list of items.
This ListCollectionView is bound to a ListBox in my View.
...
9
votes
1answer
7k views
TwoWay Manual Binding Implementation for ListBox.SelectedItems?
I've been trying to see if there is an easy/clever way to implement binding to ListBox.SelectedItems. If you have tried yourself, you will know, that markup binding using BindingExtension will not ...
8
votes
2answers
5k views
How to bind Dictionary to ListBox in winforms
It is possible to bind a dictionary to a listbox, keeping in sync between the listbox and the member property?
8
votes
4answers
1k views
Preserving a bound WPF ListBox's scroll position when the collection changes
I have a WPF ListBox bound to an ObservableCollection. When things are added to the collection, the ListBox scroll position shifts by the size of the added entries. I'd like to be able to preserve the ...
8
votes
1answer
12k views
WPF ListBox Selection Color
Sorry if this has been asked before, but I couldn't find a solution to what I'm looking for in the related questions that popped up, or on Google.
In my application I'm trying to recreate Words New ...
8
votes
9answers
3k views
Odd problem with ListBox.DataSource
I'm writing a Windows application and using a Listbox control. I'm developing with Visual Studio C# 2008 Express Edition.
I've got a data object that looks something like this
public class ...
8
votes
5answers
9k views
C# Can I display images in a list box?
C# In a nut shell can I display images in a list box? I have a list of users and I want to display a green tick next to some of the names, is this possible?
Thanks
7
votes
2answers
214 views
Use ListBox within Focus Scope
Short story: A ListBox inside a focus scope doesn't allow an item to be selected.
Long story:
I am trying to make a context-sensitive widget for data entry. I have the main panel with several ...
7
votes
2answers
97 views
Cannot access underlying event field
I am trying to cause TButton Click event from within TListBox doubleclick event by simply calling:
Button1.Click;
I am always able to do that under Delphi XE and version below it, but now it is ...
7
votes
8answers
748 views
Self Sorting Listbox
Totally stumped by something that seems easy, and has been done to death... Yet still stumped.
What I want to do: I've got a WinForms ListBox. Its items are populated with objects, the ...
7
votes
2answers
2k views
WPF ListBox virtualization screws up displayed items
Problem
We need to efficiently display a large (>1000) number of objects in a WPF ListBox control.
We are relying on the WPF ListBox’s virtualization (via VirtualizingStackPanel) to efficiently ...
7
votes
3answers
7k views
Automatic Scrolling in a Silverlight List Box
How can I programmatically force a silverlight list box to scroll to the bottom so that the last item added is always visible.
I've tried simply selecting the item. It ends up as selected but still ...
7
votes
2answers
15k views
WPF: Bind Collection with Collection to a ListBox with groups
sometimes WPF is too complex for me. I've got my "Window1" holding a collection of "Group"s. "Group" is a class with a collection of "Person"s. In the end this should be a contact list. What I simply ...
7
votes
3answers
4k views
Reorder a winforms listbox using drag and drop?
Is this a simple process?
I'm only writing a quick hacky UI for an internal tool.
I don't want to spend an age on it.
7
votes
6answers
10k views
In a WPF ListBox with more than 1000 Image Items the Zoom Images become slow
I met a problem when deveoping a photo viewer application.
I use ListBox to Show Images, which is contained in a ObservableCollection.
I bind the ListBox's ItemsSource to the ObservableCollection.
...
7
votes
4answers
5k views
Can a WPF ListBox be “read only”?
We have a scenario where we want to display a list of items and indicate which is the "current" item (with a little arrow marker or a changed background colour).
ItemsControl is no good to us, ...
7
votes
3answers
5k views
Setting the scrollbar position of a ListBox
Can I programatically set the position of a WPF ListBox's scrollbar? By default, I want it to go in the center.
7
votes
3answers
13k views
How do I bind the result of DataTable.Select() to a ListBox control?
I have the following code:
ListBox.DataSource = DataSet.Tables("table_name").Select("some_criteria = match")
ListBox.DisplayMember = "name"
The DataTable.Select() method returns an array of ...
6
votes
3answers
90 views
Animating the addition of a string to a ListBox in FireMonkey
The following code nicely animates adding a new string to the end of a ListBox
procedure TForm6.AddItem(s: string);
var
l : TListBoxItem;
OldHeight : Single;
begin
l := ...
6
votes
2answers
126 views
Listbox owerflows when printing from IE
When I print a page with a listbox from IE the content owerflows. This only happens in IE and it's only the actual print, the print preview looks good.
Here's a code sample:
<!DOCTYPE html ...
6
votes
1answer
583 views
ListBox item load animation
I want to create user control based on ListBox (ListView) with such animation: the items in listbox do not loads all at once, they have to load step-by-step (item-by-item, first then second, then ...
6
votes
3answers
486 views
How can I implement fading in and out of Added/Removed ListItems
Suppose I have a ListBox bound to an ObservableCollection and I want to animate adding/removing of ListBoxItems eg. FadeIn/Out, SlideDown/Up etc. How can I do that?
6
votes
3answers
4k views
6
votes
3answers
2k views
How to use Canvas as the ItemsPanel for an ItemsControl in Silverlight 3
I am trying to set the Canvas properties in an ItemsControl DataTemplate with Silverlight 3. According to this post, the only way of doing that is to set it using the ItemsContainerStyle for the ...
6
votes
4answers
3k views
Silverlight: Datagrid like grouping in ItemsControl
Is it possible to group items in a ItemsControl or Listbox in Silverlight? These controls are bound to a DomainDataSource.
Or are there any 3rd party controls that do this?
UPDATE:
This is the sort ...