programming-examples/c-sharp/Others/LineGeometry.cs

15 lines
443 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
LineGeometry
<Window x:Class="Workspace.DockExample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Workspace" Width="600" Height="440">
<Path Stroke="Black" StrokeThickness="1">
<Path.Data>
<LineGeometry StartPoint="12,12" EndPoint="60,25" />
</Path.Data>
</Path>
</Window>