Code: Select all
<Page
x:Class="GeometryTestPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Canvas x:Name="canvas">
<Path StrokeThickness="5" Stroke="Red" StrokeLineJoin="Round" Fill="Blue" Data="M 0,0 L 100,100 L 100,0 Z" Canvas.Left="50" Canvas.Top="50">
<Path.Effect>
<DropShadowEffect BlurRadius="6" />
</Path.Effect>
</Path>
</Canvas>
</Page>
Result:
It looks like the stroke is broken.
Also, shadows do not produce the expected results.
Is there a good solution?
-----
cshtml5 version: 2.0.0-alpha63-083