Mega Code Archive

 
Categories / C# / WPF
 

Ployline types do not require connecting ends

<Window x:Class="WpfApplication1.MainWindow"     xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"     xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"     Title="WpfApplication1" Height="352" Width="334" WindowStartupLocation="CenterScreen">     <StackPanel>     <Polyline Stroke ="Red" StrokeThickness ="20" StrokeLineJoin ="Round"                   Points ="10,10   40,40  10,90   300,50"/>     </StackPanel> </Window>