I would like draw a vector-based graphic within a WPF ListBoxItem. The 2D shapes are very simple, line or square/rectangle, for example. But neither the shapes nor the colors are known at compile-time so it can't be an Image.
Sample screen shot: http://i.stack.imgur.com/EisIQ.jpg (My meager rep prevents me from posting the image inline...)
I believe this should be possible with WPF? If so how, perhaps involving Canvas and Rectangle elements?
Many thanks in advance!
EDIT
I was thrown off by seemingly only finding various examples of adding images to ListBoxItems, so I hadn't really dug in. Thanks to the below answer for getting me off on the right foot.
XAML using two DataTemplates and a declaration of a template selector which selects the correct template based on the data. Color too is bound to the data (a property called LayerColor)
<UserControl.Resources>
<!-- to convert the color -->
<src:ColorBrushConverter x:Key="colorConverter"/>
<!-- to select the correct template based on geom type -->
<src:LayerListDataTemplateSelector x:Key="layerDataTemplateSelector"/>
<DataTemplate x:Key="lineLayerTemplate">
<Border BorderThickness="0" BorderBrush="Gray"
Padding="5" Name="border" Margin="1" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Line Margin="5,0,5,0" Height="16"
X1="1" Y1="8"
X2="35" Y2="8"
Stroke="{Binding Path=LayerColor, Converter={StaticResource colorConverter}}"
StrokeThickness="2"/>
<TextBlock Grid.Row="0" Grid.Column="1" Margin="5,0,0,0"
Name="layerName" Text="{Binding Path=LayerName}"/>
</Grid>
</Border>
</DataTemplate>
<DataTemplate x:Key="pointLayerTemplate">
<Border BorderThickness="0" BorderBrush="Gray"
Padding="5" Name="border" Margin="1" >
<Grid>
<Grid.RowDefinitions>
<RowDefinition/>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="50"/>
<ColumnDefinition />
</Grid.ColumnDefinitions>
<Polygon Grid.Row="0" Grid.Column="0" Margin="5,0,10,0"
Fill="{Binding Path=LayerColor, Converter={StaticResource colorConverter}}"
Stroke="Black" StrokeThickness="1"
StrokeLineJoin="Round" Width="16" Height="16"
Stretch="Fill"
Points="8,1 1,8 8,15 15,8 8,1"
Visibility="Visible" Name="diamond"/>
<TextBlock Grid.Row="0" Grid.Column="1" Margin="5,0,0,0"
Name="layerName" Text="{Binding Path=LayerName}"/>
</Grid>
</Border>
</DataTemplate>
</UserControl.Resources>
<Grid>
<ListBox x:Name="layerListBox" HorizontalContentAlignment="Stretch" HorizontalAlignment="Stretch"
ItemTemplateSelector="{StaticResource layerDataTemplateSelector}">
</ListBox>
</Grid>