13 lines
850 B
Plaintext
13 lines
850 B
Plaintext
|
<Window x:Class="_12_形状画刷和变换_2改变形状的尺寸和放置形状_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"
|
||
|
Icon="public/003540AH4M72.jpg" Title="_12_形状画刷和变换_2改变形状的尺寸和放置形状_1" Height="450" Width="800">
|
||
|
<Canvas>
|
||
|
<Label>使用Canvas注意先后关系</Label>
|
||
|
<Ellipse Fill="Yellow" Stroke="Blue" Canvas.Left="100" Canvas.Top="50" Width="100" Height="50" />
|
||
|
<Rectangle Fill="Yellow" Stroke="Blue" Canvas.Left="30" Canvas.Top="40" Width="100" Height="50" />
|
||
|
</Canvas>
|
||
|
</Window>
|