Mega Code Archive

 
Categories / VB.Net Tutorial / WPF
 

A Polygon

<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"       xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"       HorizontalAlignment="Stretch" VerticalAlignment="Stretch">     <StackPanel Orientation="Horizontal">       <Polygon  Fill="Orange" Stroke="Blue" StrokeThickness="2" Points="40,10 70,50 10,50"  />     </StackPanel> </Page>