4-Graphics_Animation/13-几何图形和图画-6微语言集合图形/MainWindow.xaml

32 lines
1.3 KiB
XML

<Window x:Class="_13_几何图形和图画_6微语言集合图形.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-几何图形和图画-6微语言集合图形 P318" Height="800" Width="800">
<StackPanel>
<Path Stroke="Blue">
<Path.Data>
<PathGeometry>
<PathFigure IsClosed="True" StartPoint="10,100">
<LineSegment Point="100,100" />
<LineSegment Point="100,50" />
</PathFigure>
</PathGeometry>
</Path.Data>
</Path>
<Path Stroke="Blue" Data="M 10,100 L 100,100 L 100,50 z" />
<Path Stroke="Blue" Data="M 50 50 L 150 50 L 100 150 Z" />
<Path Stroke="Aqua">
<Path.Data>
<PathGeometry Figures="M 10,100 L 100,100 L 100,50 z" />
</Path.Data>
</Path>
<Label>SVG图</Label>
<Path Stroke="Blue" Data="M 10 10 H 90 V 90 H 10 L 10 10" />
</StackPanel>
</Window>