2025-01-15 18:18:30 +08:00
|
|
|
<Window x:Class="_12_形状画刷和变换_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"
|
2025-01-15 22:41:40 +08:00
|
|
|
Icon="public/003540AH4M72.jpg" Title="12-形状画刷和变换-3直线" Height="450" Width="800">
|
2025-01-15 18:18:30 +08:00
|
|
|
<Canvas>
|
2025-01-15 22:41:40 +08:00
|
|
|
<Polyline Stroke="Blue" Points="5 100 15 200" />
|
|
|
|
|
|
|
|
<Polyline Stroke="Red" Points="10 110, 25 210" StrokeThickness="5" />
|
2025-01-15 18:18:30 +08:00
|
|
|
</Canvas>
|
2025-01-15 22:41:40 +08:00
|
|
|
</Window>
|