Flat Line Cap : StrokeLineJoin « Graphics « Silverlight






Flat Line Cap

Flat Line Cap
  

<UserControl x:Class='SilverlightApplication3.MainPage'
    xmlns='http://schemas.microsoft.com/winfx/2006/xaml/presentation' 
    xmlns:x='http://schemas.microsoft.com/winfx/2006/xaml'
    xmlns:d='http://schemas.microsoft.com/expression/blend/2008' 
    xmlns:mc='http://schemas.openxmlformats.org/markup-compatibility/2006' 
    mc:Ignorable='d' 
    d:DesignWidth='640' 
    d:DesignHeight='480'>
  <StackPanel Margin="20" Background="White">
    <Polyline Stroke="Blue" StrokeThickness="15" StrokeEndLineCap="Flat" 
      Points="10,10 30,0 50,20 90,10 200,10" >
    </Polyline>


  </StackPanel>
</UserControl>

   
    
  








Related examples in the same category

1.Square Line CapSquare Line Cap
2.Round Line CapRound Line Cap
3.Triangle Line CapTriangle Line Cap
4.Bevel Line JoinBevel Line Join
5.Round Line JoinRound Line Join
6.Miter Line JoinMiter Line Join
7.Miter Line Join With Limit of 3Miter Line Join With Limit of 3