The following is similar to what I'm trying to accomplish. However, I get the error
Invalid PropertyDescriptor value.
on the Template Setter
. I suspect it's because I didn't specify a TargetType
for the Style
; however, I don't know the container type for ItemsControl
.
<ItemsControl>
<ItemsControl.ItemContainerStyle>
<Style>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<StackPanel>
<TextBlock Text="Some Content Here" />
<ContentPresenter />
<Button Content="Edit" />
</StackPanel>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</ItemsControl.ItemContainerStyle>
<!-- heterogenous controls -->
<ItemsControl.Items>
<Button Content="Content 1" />
<TextBox Text="Content 2" />
<Label Content="Content 3" />
</ItemsControl.Items>
</ItemsControl>
You can qualify the property name with the type name:
The container for
ItemsControl
is normally aContentPresenter
, but if the child is aUIElement
then it won't use a container. In this case, all of the children are Controls, so theItemContainerStyle
will apply to them directly. If you added an item other than aUIElement
, that setter would set theControl.Template
property on theContentPresenter
, which would succeed but have no effect.Actually, it sounds like what you want is to wrap each child in a container, even if they are already a
UIElement
. To do that, you will have to use a subclass ofItemsControl
. You could use an existing one likeListBox
, or you could subclassItemsControl
and overrideGetContainerForItemOverride
andIsItemItsOwnContainerOverride
to wrap the items in your own container. You could wrap them in aContentControl
and then use that as theTargetType
for theStyle
.You will also need to set the
TargetType
on theControlTemplate
so that theContentPresenter
will bind to theContent
property: