4-Graphics_Animation/12-形状画刷和变换-1矩形和椭圆/MainWindow.xaml

12 lines
726 B
XML

<Window x:Class="_12_形状画刷和变换_1矩形和椭圆.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="_12_形状画刷和变换_1矩形和椭圆" Height="450" Width="800">
<StackPanel>
<Ellipse Fill="Yellow " Stroke="Blue" Height="50" Width="100" HorizontalAlignment="Left" />
<Rectangle Fill="Yellow" Stroke="Blue" Height="50" Width="100" Margin="5" HorizontalAlignment="Left" />
</StackPanel>
</Window>