I have a complex logo developed in Illustrator that I want to use as an image in WPF. It seems I am combining Path when importing into Blend to get one Path without losing all the fill colors.
What is the best way to convert an illustrator image into something that can be used in WPF / XAML.
Usually, I simply combine Path into one path, and then reference the path using the following:
<Application.Resources>
<Path x:Key="pathKeyName" Data="..."/>
</Application.Resources>
<Path Style="{StaticResource pathKeyName}" />
However, there seems to be no easy way to group multiple paths together into a single image that can be used as a resource in a similar way.
Perhaps there is a way to convert these paths into geometry?
Blend UserControl , - , , , .