1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
| <Grid>
<Button x:Name="Btn1" Content="Bouton" Height="23" Width="100" HorizontalAlignment="Center"
VerticalAlignment="Center" Click="Btn1_Click" />
<Path StrokeThickness="1" Stroke="Black" Fill="Transparent"
HorizontalAlignment="Center" VerticalAlignment="Center" >
<Path.Data>
<PathGeometry>
<PathGeometry.Figures>
<PathFigureCollection>
<PathFigure IsClosed="True" StartPoint="10,100">
<PathFigure.Segments>
<PathSegmentCollection>
<LineSegment Point="600,100" />
<LineSegment Point="600,10" />
<LineSegment Point="10,10" />
</PathSegmentCollection>
</PathFigure.Segments>
</PathFigure>
</PathFigureCollection>
</PathGeometry.Figures>
</PathGeometry>
</Path.Data>
</Path>
</Grid> |
Partager