14 lines
801 B
Plaintext
14 lines
801 B
Plaintext
|
<Window x:Class="_12_形状画刷和变换_8SolidColorBrush.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-形状画刷和变换-8SolidColorBrush" Height="450" Width="800">
|
||
|
<Canvas>
|
||
|
<Polyline Canvas.Top="30" Stroke="Red" StrokeThickness="14" StrokeDashArray="2 0.5 2"
|
||
|
Points="10,30 60,0 90,40 120,10 350,10" Name="PolylineCmd" />
|
||
|
|
||
|
<Button Canvas.Top="100" Width="100" Height="30" Name="ButtonCmd">按钮</Button>
|
||
|
</Canvas>
|
||
|
</Window>
|