0
votes
1answer
71 views

Change disabled listbox background to gray

I have a listbox which I need to gray out when it's disabled. Per user request it's not enough to disable it, but it also has to appear differently. shrugs I've looked in several other places and ...
1
vote
1answer
195 views

ListBox/ListBoxItem for BoundData Style Template Clarification WPF XAML

How do I get a databound ListBox to accept a templated Style (from within my ResourceDictionary with the same name as the respective Style) for the ListBoxItem? I see in Blend 4 that within the ...
0
votes
1answer
161 views

Performance degredation with custom ListBox ControlTemplate

Using a template for a custom control deriving from ListBox causes filtering of ItemSource to become slow. The filtering is done in the get of the ItemSource that the control is bound to. This problem ...
1
vote
2answers
249 views

Can you insert items between ListBoxItems in a ListBox?

Simple question. We want a divider to appear between each item in a horizontally styled listbox. Think the arrows between entries in a crumbtrail. However, we don't want that divider to be part of ...
0
votes
1answer
3k views

Custom Listbox Scrollbar style Issue

I have the following xaml for WPF ListBox control. I have customized it so suit my UI requirements. However, the scrollbar thumb won't reach the top & bottom of the scrollbar. Also the thumb won't ...
0
votes
1answer
346 views

Binding ListBox Items using Templates

I am going crazy trying to figure this out without success. I have a DependencyObject, ("UserObject"). It has a "DataItems" DependecyProperty that is an ObservableCollection. "UserDefiniton" is a ...
1
vote
1answer
301 views

Automatic Scrolling in a Silverlight List Box with Custom Template

I have ListBox with custom template, how do programmatically scroll it down to bottom? Automatic Scrolling in a Silverlight List Box describes method of scrolling to bottom of ListBox. Unfortunately ...
0
votes
0answers
277 views

How to maintain virtualization in WPF ListBox while templating selected item

I have a ListBox with 1000 items and when a particular item is selected, the item expands (as I have Templated the ListBox Selected Item) providing more information to the user. The problem is that ...
0
votes
1answer
2k views

How to know in Listbox which ListItem button is clicked?

I have Listbox: <ListBox x:Name="FriendsRequestList"> <ListBox.ItemTemplate> <DataTemplate> <StackPanel ...
0
votes
1answer
601 views

Switch ContentPresenter of ListBoxItem Based on Selection

I am trying to switch out the ContentPresenter of a ListBoxItem when it is selected, while using multiple DataTemplates to represent different types of data. Here is the UserControl that defines the ...
1
vote
1answer
587 views

WPF ListBox display last item differently

I want to have a listbox, that allows the user to fetch lets say 20 items from the DB and displays a hint on the last row of the listbox if there are more items to be fetched. When the user clicks on ...
2
votes
1answer
2k views

adding a header to a listbox's scrollviewer and keeping the virtualizingStackPanel (wp7)

I want to add a header to my ListBoxes and I do this by using a template. The problem is that if I extend the ListBox's template it seems that the listbox's virtualizingstackpanel doesn't work anymore ...
0
votes
1answer
752 views

Problem with control template on listbox item

I have own style on listbox item, here is it: <Style x:Key="friendsListStyle" TargetType="{x:Type ListBox}"> <Setter Property="ItemTemplate"> ...
0
votes
1answer
357 views

Making columns in a WPF ListBox

Problem: I have a set of items which have 3 elements: Image Description Numeric Value I want to display these in a ListBox (similar to the way Excel displays emails in the summary view) however, ...
0
votes
1answer
495 views

Listbox styling and control template issue in silverlight

I have to change Listbox's control templated in a way that it can look like below image i have added togglebutton in listboxdatatemplate... have one stackpanel in listbox style template... so ...
1
vote
1answer
1k views

DataTrigger inside ControlTemplate doesn't update

I have a ListBox that is bound to a list of CustomerViewModel-objects, that each has two dependency properties: - Name (string) - Description (string) - IsVisible (bool) (the IsVisible property is ...
0
votes
1answer
2k views

Clear wpf listbox selection using button in control template and no codebehind

I want to create a Style for a WPF ListBox that includes a Button in the ControlTemplate that the user can click on and it clears the ListBox selection. I dont want to use codebehind so that this ...
1
vote
4answers
1k views

WPF Layout - Geting a column to fill available space

I have a ListBox that has a grid in its template to allow 4 columns. One column is the actual text of the ListBox. I want that column to fill the available horizontal space. The column ...
23
votes
6answers
22k 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" ...