¿Cómo agregar un archivo svg / xaml en Windows C # WPF como imagen?

Cómo agregar un.svg archivo en una ventana WPF en C # como una imagen (,png ||,jpg)?

Yo uso el codigo

<Image HorizontalAlignment="Left" Height="53" Margin="34,39,0,0"
           VerticalAlignment="Top" Width="71" 
           Source="Test.svg" Name="MyImage"/>

Pero me sale un error:

Blend no admite el formato svg.

Descubrí que podía cambiar el.svg&nbsp;presentar en un.xaml&nbsp;archivo. Pero todavía no sé cómo agregar el xaml como imagen.

Basado en una respuesta, cambié mi código así:

<Window x:Class="NIA_UI_Demo_CSharp.ShareDocumentsWin"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:svgc="http://sharpvectors.codeplex.com/svgc/"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    Title="ShareDocumentsWin" Height="350" Width="569">

<ResourceDictionary>
    <Style x:Key="TheAwesomeXAMLimage" TargetType="ContentControl">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="ContentControl">
                    my code
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
</ResourceDictionary>

<Grid Margin="0,0,2,3">
    <ContentControl Style="{StaticResource TheAwesomeXAMLimage}"/>
</Grid>
</Window>

Pero me sale un error:

El contenido se configura más de una vez;