20 lines
913 B
XML
20 lines
913 B
XML
<Window x:Class="_13_几何图形和图画_8图画.MainWindow"
|
|
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"
|
|
Icon="public/bunny.png" Title="13-几何图形和图画-8图画 P322" Height="450" Width="800">
|
|
<StackPanel>
|
|
<Path Fill="BlueViolet" Stroke="Blue">
|
|
<Path.Data>
|
|
<PathGeometry>
|
|
<PathFigure IsClosed="True" StartPoint="10,100">
|
|
<LineSegment Point="100,100" />
|
|
<LineSegment Point="100,50" />
|
|
</PathFigure>
|
|
</PathGeometry>
|
|
</Path.Data>
|
|
</Path>
|
|
</StackPanel>
|
|
</Window> |