Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
290 views

ListBox GroupStyle HeaderTemplate with a color

I would like to create a HeaderTemplate for GroupStyle (ListBox) which contains a rectangle with a color and the name of a color. I have a list of employees. Each employee has a color. I used a ...
1
vote
1answer
251 views

WPF: Groupstyle not working correctly because of Style and/or modified ListBox

I am trying to use a GroupStyle but instead of showing the groupname as a header over the items in the list it only shows the header and not the items. It works fine until I applied a special style ...
1
vote
1answer
1k views

Group panel of WPF ListBox

I have a listbox that is grouping the items with a GroupStyle. I would like add a control at the bottom of the stackpanel that holds all of the groups. This additional control needs to be part of ...
1
vote
2answers
763 views

Rewrite DataGrid-GroupStyle XAML into C# code

Can someone please rewrite this XAML into C# code ? <DataGrid.GroupStyle> <GroupStyle ContainerStyle="{StaticResource GroupHeaderStyle}"> ...
0
votes
1answer
100 views

Setting ListView.GroupStyle in XAML dynamically?

I've got a ListView, whose View is switched dynamically in runtime between an Icon mode and a Grid mode (the latter implemented with a GridView). The problem is, as I described here, that when I add ...
0
votes
1answer
117 views

WPF: Creating custom GroupDescription based on DateTime

I'm grouping some data and PropertyGroupDescription works fine most of the time. However if that property is a DateTime and i wan't to group several dates together as one group (like 30 days in each ...
0
votes
1answer
86 views

WPF: setting different styles for Dual level grouping with DataTrigger

I have a dual level grouping and thought I could define different styles with DataTriggers. Thinking that GroupStyles.HeaderTemplate would bind to CollectionViewGroup I tried DataBinding to ...
0
votes
0answers
55 views

WPF: Groupstyles questions

I have a few questions about GroupStyles in WPF. 1) GroupStyle.ContainerStyle vs. Parent.ItemContainerStyle How does this work. Doesn't the ContainerStyle define the style for the items in the list? ...
0
votes
1answer
168 views

WPF XAML No textbox display when binding

I'm having hard times with a simple textbox not displaying what I want. Basically I have a grouped listbox from this data file xml : <Hosts> <Host foo="aaa"> ...
0
votes
1answer
111 views

wpf DataGridComboBoxColumn GroupStyle

Is there anyway to set a groupstyle to DataGridComboBoxColumn any help please thanks
0
votes
1answer
716 views

Sort and Group ListItems in a WPF ListBox- GroupItem collapse and expand

Hi I sort and group listbox items, I use CollectioView on this purpose. From view model class I bind collection on ListBox ItemSource property, here is it. public ...
0
votes
1answer
247 views

Access to Combobox properties out of its GroupStyle.HeaderTemplate

I made some HeaderTemplate for Combobox.GroupStyle in order to display items in groups. And know I need to do some operations with the Combobox when user clicks on the GroupHeader. I have tried to ...
0
votes
1answer
630 views

WPF - Maintain Group Style in ListView

I've got a simple ListView which pulls data from an ObservableCollection and I'm using a CollectionViewSource to a set a GroupPropertyDescription so that my rows appear grouped. I've used the ...
0
votes
3answers
458 views

How to Collapse / Expand multiple Expander controls depending on Group name in WPF?

What I want to achieve: To collapse or expand all Expanders that share the same group name within a group style. We have a ListBox and another ListBox nested inside it to display child items. The ...
0
votes
1answer
2k views

WPF - Group STyle Header never appears

My GroupStyle Header never appears in the combobox.... The Grouping is working fine....It's sole a binding issue but am not able to figure out. <DataTemplate> ...