Skip to main content
Home Forums Silverlight Design Designing with Silverlight I need help with the drawing of a polygon
2 replies. Latest Post by DJanjicek on July 2, 2009.
(0)
DJanjicek
Participant
970 points
324 Posts
07-01-2009 1:15 PM |
Hey everybody,
i need some help with drawing a polygon which has to get the shape of a + sign. What i have is the xaml for a _ polygon which is okay, but i need another one for a + sign. Can anybody help me out?
Here is the xaml for the _ polygon:
<
Thanks in advance...
SharpGIS
Contributor
3387 points
611 Posts
07-01-2009 10:54 PM |
Try this: < Path Stroke="Black" Fill="Gray" Data="M 0,5 H 10 M 5,0 V 10" /> Also see: http://msdn.microsoft.com/en-us/library/cc189041(VS.95).aspx
07-02-2009 3:02 AM |
Awesome! Thank you!