Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

Polygon FillRule=Nonzero

<Window x: Class="PolygonFillRule"   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"   Title="PolygonFillRule" Height="600" Width="300">   <Grid>     <StackPanel Margin="10">       <Polygon Stroke="Black" Fill="LightGray" FillRule="Nonzero"         Points="0 0,0 150,100 150,100 50,50 50, 50 100,150 100,150 0" />       <TextBlock Text="FileRule = NonZero:" Margin="0 10 0 5" />     </StackPanel>   </Grid> </Window>