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.

14 lines
403 B
C#

Create a line with point value
<Window x:Class="WpfApplication1.ShapesWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="ShapesWindow" Height="120" Width="360">
<StackPanel Orientation="Horizontal">
<Line Stroke="Red" X1="72" X2="0" Y1="0" Y2="180" />
</StackPanel>
</Window>