I have some XAML based diagrams that consist of Paths embedded in Canvas objects e.g.
<Canvas x:Name="c1" Width="55.2533" Height="18.2933" Canvas.Left="194.606" Canvas.Top="194.131">
<Path x:Name="Path_5" Width="8.02666" Height="13.44" Canvas.Left="0" Canvas.Top="0.559998" Stretch="Fill" Fill="#FF000000" Data="......etc"/>
</Canvas>
Is there a way/tool to convert the XAML to either a ShapeFile or SqlGeometry data? I need to convert as I want to display the graphic in a third party map control that only binds to ShapeFiles or SqlGeometry data.
Any help would be appreciated.