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

Is there a way to draw the polygon with solid/clean edges?

link|improve this question

67% accept rate
feedback

2 Answers

The translucency you see is not caused by a non-solid border or a border that is not thick enough but by anti-aliasing.

Setting SnapsToDevicePixels="True" will not solve this as a rectangle is a Drawing object so you will have to use Guidelines

Another way is to 'fix' it is by putting the lines in the middle of the pixels:

     <Polygon.Points>
            <Point X="0.5"
                   Y="300.5" />
            <Point X="50.5"
                   Y="300.5" />
            <Point X="50.5"
                   Y="0.5" />
            <Point X="0.5"
                   Y="0.5" />
            <Point X="0.5"
                   Y="300.5" />
        </Polygon.Points>

When the coordinates are given like this it is easier to decide what pixels to turn on. If the coordinate is in between two (or more) pixels WPF will color all of them a bit.

link|improve this answer
feedback

Set a thickness:

StrokeThickness="5"

Also you might need to snap to device pixels:

SnapsToDevicePixels="True"

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.