Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
3k views

ItemsControl, ItemsPanel and ItemsPresenter (Silverlight, XAML)

I'm utterly confused by these 3 terms, when to use which? What's the relationship and they are children of which controls? Is it correct to say this is the tree: ItemsControl > ItemsPresenter > ...
2
votes
1answer
324 views

A ItemsControl without a ItemsPresenter (Silverlight)

I created a control that inherited the ItemsControl, and the control that I made does not have a ItemsPresenter for its template. Instead, I have a Grid. I want to make a list like this: (Item 1) ...
2
votes
1answer
629 views

Why does ItemsPresenter override my DataGrid's foreground style?

I have a DataGrid style in App.xaml: <Style TargetType="{x:Type DataGrid}"> <Setter Property="Foreground" Value="{StaticResource DataGridItemTextBrush}" /> <Setter ...
2
votes
1answer
8k views

WPF - Implement ItemTemplate for an ItemsPresenter?

I've been working on a SplitButton control for WPF and its basically done, but I'm trying to go through all the possible properties that can be set on it and make sure they are actually implemented. I ...
2
votes
2answers
647 views

Using a Grid as an ItemsHost

I would like to use a Grid as an ItemsHost but none of the items appear in their bound (column, row) positions. How can I make this work? As a simple example: XAML <ItemsControl ...
1
vote
1answer
1k views

WrapPanel as ItemPanel for ItemsControl

Still fooling around with WPF and learning as I go. Trying now to build a dynamic grouping of controls ( mostly buttons but might include checkboxes and others ). I had no idea what was the best way ...
0
votes
0answers
731 views

WPF - Left align items in an itemspresenter?

I've got this bit of code in one of my control templates for a SplitButton I'm working on: <Popup x:Name="PART_Popup" AllowsTransparency="True" Grid.Row="1" IsOpen="{Binding ...