I draw a rectangle using:
<Rectangle Width="300" Height="100" Stroke="Blue" StrokeThickness="6"> </Rectangle>
but there is anti-aliasing applied to it. Is there a way to turn this off? I want it to be sharp and clear.
A little late but RenderOptions.EdgeMode="Aliased"
does the trick
<Rectangle Width="300"
Height="100"
Stroke="Blue"
StrokeThickness="6"
RenderOptions.EdgeMode="Aliased"/>