12 lines
698 B
XML
12 lines
698 B
XML
<Window x:Class="_4_图形和动画.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"
|
|
Title="_4_图形和动画" Height="450" Width="800">
|
|
<StackPanel>
|
|
<Ellipse Fill="Yellow " Stroke="Blue" StrokeThickness="6" Height="50" Width="100" HorizontalAlignment="Left" />
|
|
<Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width="100" Margin="5" HorizontalAlignment="Left" />
|
|
</StackPanel>
|
|
</Window> |