Mega Code Archive

 
Categories / VB.Net / WPF
 

Bevel Line Join

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     x:Class="Microsoft.Samples.Graphics.RectangleExample"     WindowTitle="Example">   <Canvas>     <Polyline Stroke="Blue" StrokeThickness="14" StrokeLineJoin="Bevel" SnapsToDevicePixels="True"       Points="10,60 30,10 50,70 90,40" >     </Polyline>     <TextBlock Grid.Column="1" VerticalAlignment="Center">Bevel Line Join</TextBlock>   </Canvas> </Page>