Tagged Questions

2
votes
1answer
486 views

How do I get the instance of a templated item from a databound ItemsControl? (WPF)

I have an <ItemsControl> with a custom <DataTemplate> (and also a custom <ItemsPanelTemplate> that is just a WrapPanel), bound via ItemsSource to a simple observable collection of ...
1
vote
1answer
86 views

How can you enable auto-DataTemplate selection based on data type like you can with an items control?

We're writing a very specialized ItemsControl which actually has three ContentPresenter's per 'row', each bound to a different object (think poor-man's grid) instead of the more common one, like a ...
1
vote
1answer
229 views

Why do I get a NullReferenceException when using a style on a ContentPresenter?

I've created this template, which uses a style applied to the ContentPresenter so that I can bind the data object's Column property to Grid.Column, allowing the items to determine for themselves which ...
0
votes
1answer
82 views

Using a ContentPresenter inside of a MenuItem HeaderTemplate causes a StackOverflowException

Please observe the following markup: <Style TargetType="{x:Type MenuItem}" x:Key="..."> <Setter Property="HeaderTemplate"> <Setter.Value> ...
0
votes
1answer
49 views

How to reference “PreviousData” when setting ContentPresenter.Style

In the following code I am trying to set the style of the first item in my collection to one template and the rest to a different template by checking if the PreviousElement is null. I think my ...