Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
126 views

Grid with named RowDefinition fails to populate as ItemsPanel in WPF4

I have a Grid defined in an ItemsControl ItemsPanelTemplate, and one of RowDefinitions has a x:Name defined (so I could animate the row size). <ItemsControl ItemsSource="{Binding Data, ...
4
votes
1answer
347 views

Overriding default ItemsPanelTemplate in Silverlight 4?

I am trying to override the default template for TabControl in Silverlight. Instead of having the tabs wrap around when they are full, I want to make it so the user can scroll through them, similar to ...
2
votes
1answer
131 views

ItemsPanel Template has no effect

I'm trying to swap the ItemsPanel in a ListBox for a WrapPanel but the ItemsPanelTemplate on the style doesn't seem to be having an effect. The style is found and applied because the border and ...
1
vote
2answers
50 views

ItemsControl has no children during MainWindow's constructor

Based on the answer to SO question "WPF: arranging collection items in a grid", I have the following: <ItemsControl Name="itemsControl1" ItemsSource="{Binding MyItems}"> ...
1
vote
1answer
105 views

WrapPanel lays out items in one long horizontal line (displaying scroll bars) instead of wrapping lines

<Grid.ColumnDefinitions> <ColumnDefinition Width="Auto"/> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="Auto"/> ...
1
vote
1answer
63 views

Binding acting strange with ItemPanel and ok without

The following code on displays the {Binding text} and the dependency property for Sprites does not run the propertyvaluechanged for text runs but not for sprites. <ItemsControl ...
1
vote
1answer
370 views

Click, Drag, and Scroll Canvas View

I have a ListBox with a ItemsPanelTemplate of Canvas. I know the ScrollViewer will not work with the Canvas unless its given a height and width. I DO NOT want to give the canvas a height and width ...
1
vote
2answers
301 views

Can the groups of a grouped CollectionView be presented horizontally?

I'm implementing a ListBox whose ItemsPanel is a WrapPanel as per this answer, but there's a twist: my ItemsSource is a grouped CollectionView. With a GroupStyle applied to my ListBox, the wrapping ...
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
1answer
263 views

Add controls to empty cells in a Grid that's the ItemsPanelTemplate for a ListView

I have a WPF ListView, which has a Grid as an ItemsPanelTemplate. I display my items in the correct column and row based on a property of the item. But I would like to put some controls in the empty ...
1
vote
1answer
1k views

How can a WPF ListBox, with a custom ItemsPanel template, resize itself based on the size of its items

This is a follow up question to this, which was answered. Using the code: <ListBox ScrollViewer.VerticalScrollBarVisibility="Disabled"> <ListBox.ItemsPanel> ...
1
vote
1answer
569 views

Change how items are displayed WPF list box

I have a WPF window which displays a ListBox. I've changed the ListBox's item template so that the list box displays rectangular items which can be selected. Now I'd like to modify the ListBox's ...
1
vote
2answers
4k views

WPF - Why Listbox items do not fill uniformgrid

I have a listbox with the ItemsPanelTemplate set to UniformGrid with rows= 6 and cols= 7. I want the listbox items to fill their space. I am using a datatemplete defined in a dictionary. The outer ...
0
votes
1answer
29 views

Elements are not shown with ItemsPanelTemplate

I just try to understand the concept of the ItemsPanelTemplate. For this i built a small sample solution. I have a UserControl "MyListView" with the following Code. MyListView.xaml: <UserControl ...
0
votes
2answers
68 views

Modifying an ItemsPanel's Grid RowDefinitionCollection

This is a followup for ItemsControl has no children during MainWindow's constructor Based on the answer to SO question "WPF: arranging collection items in a grid", I have the following: ...
0
votes
1answer
134 views

Why is my TabControl ignoring my ItemsPanelTemplate?

I've used the ItemsPanelTemplate on other controls such as the ListBox, so I figured doing the same thing for the TabControl would be simple. Apparently, I'm missing something and the TabControl is ...
0
votes
1answer
113 views

Changing ListBox's ItemsPanelTemplate At Runtime

I would like to have ListBox's ItemsPanelTemplate change during runtime. I have the following XAML which allows me to change the ItemsPanelTemplate; however has the unwanted side effect of breaking ...
0
votes
2answers
114 views

Two overlapping ListBoxes. Selection problem

I'm trying to display shapes in two separate Listboxes occupying the same space. I've set the Background to both Transparent and {x:Null} but the mouseclick is still getting captured by the topmost ...
0
votes
2answers
445 views

How do I set WPF's ItemsControl to display each element in a unique location?

I'm building a BlackJack program and am currently working on the hand display. I have a PlayerSeat UserControl which has an ItemsControl inside of it for the display of the cards. As with a normal ...
0
votes
2answers
628 views

Having trouble getting contents of ListBox to resize with it

I tried the suggestion here regarding Stretching, but it didn't work for me. I have a TabItem that hosts a UserControl that is essentially just a ListBox with an ItemsPanel. The ItemsPanel forces ...
0
votes
2answers
775 views

What is the difference between ItemTemplate and ItemPanelTemplate?

In WPF Listbox, I'm confused with these 2 notions: ItemTemplate and ItemsPanelTemplate Can someone explain me more? Thanks John