If you look at the below XAML, it creates two rectangles.
XAML
<Grid>
<Rectangle Height="80" Width="300" Fill="Maroon"
HorizontalAlignment="Center" VerticalAlignment="Bottom">
</Rectangle>
<Rectangle Height="300" Width="50" Fill="LightSteelBlue"
HorizontalAlignment="Left" VerticalAlignment="Bottom" Margin="50,0">
</Rectangle>
<Polygon Fill="LightSteelBlue" Stroke="LightSteelBlue"
HorizontalAlignment="Center" VerticalAlignment="Bottom">
<Polygon.Points>
<Point X="0" Y="300"/>
<Point X="50" Y="300"/>
<Point X="50" Y="0"/>
<Point X="0" Y="0"/>
<Point X="0" Y="300"/>
</Polygon.Points>
</Polygon>
</Grid>
The polygon is drawn with a border that is not solid, i.e. when you magnify the image you will see the anti-aliased edges. Interestingly when you draw a rectangle, you do not get these (rectangle on left, polygon on right):
Image http://www.barramsoft.com/pub/images/BarBorders2.png
Is there a way to draw the polygon with solid/clean edges?
Set a thickness:
StrokeThickness="5"
Also you might need to snap to device pixels:
SnapsToDevicePixels="True"