You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
443 B
C#

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>