I would like a user control's content to be one of several statically defined geometry drawings. The geometry drawing to use should depend on a property in the viewmodel for the control, and only needs to be determined once (when the control is created).
Most of what I have found through searches seems to point toward ContentTemplateSelectors and static resources. But I had assumed something as simple as my requirement could be achieved entirely in XAML.
<UserControl x:Class="MyUserControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="32" d:DesignWidth="32" Background="Transparent">
<UserControl.Resources>
<DataTemplate x:Key="EllipseTemplate" >
<Image>
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<GeometryDrawing>
<GeometryDrawing.Geometry>
<GeometryGroup>
<EllipseGeometry Center="50,50" RadiusX="20" RadiusY="45" />
</GeometryGroup>
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</DataTemplate>
<DataTemplate x:Key="RectangleTemplate" >
<Image>
<Image.Source>
<DrawingImage>
<DrawingImage.Drawing>
<GeometryDrawing>
<GeometryDrawing.Geometry>
<GeometryGroup>
<RectangleGeometry Rect="50,50,50,50"/>
</GeometryGroup>
</GeometryDrawing.Geometry>
</GeometryDrawing>
</DrawingImage.Drawing>
</DrawingImage>
</Image.Source>
</Image>
</DataTemplate>
</UserControl.Resources>
<!-- ??? -->
</UserControl>
What is the ideal approach in WPF (C#)/ xaml to accomplish this? Furthermore, why can I not specify a GeometryDrawing as the content of a DataTemplate directly (but an image containing a GeometryDrawing is acceptable)? If this results in mouse hit detection not representing the underlying geometry then even the datatemplates I've specified above will not work.