4-Graphics_Animation/13-几何图形和图画-8图画/MainWindow.xaml

20 lines
913 B
Plaintext
Raw Normal View History

2025-01-18 23:09:07 +08:00
<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>