| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.DrawingChannelGrab"
- 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">
- <Border x:Name="LayoutRoot"
- Width="15"
- Height="15"
- Background="Transparent"
- BorderBrush="DimGray"
- BorderThickness="0">
- <Grid x:Name="Arrows">
- <Ellipse x:Name="dot"
- Width="6"
- Height="6"
- Margin="-3,-3,0,0"
- Stroke="White" />
- <Path x:Name="arrowPath"
- Fill="black"
- Stroke="Black"
- StrokeEndLineCap="Triangle"
- StrokeLineJoin="Miter"
- StrokeThickness="1">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigureCollection>
- <PathFigure StartPoint="6.5,0">
- <PathFigure.Segments>
- <LineSegment Point="5,2" />
- <LineSegment Point="6.5,2" />
- <LineSegment Point="6.5,11" />
- <LineSegment Point="5,11" />
- <LineSegment Point="6.5,13" />
- <LineSegment Point="8,11" />
- <LineSegment Point="6.5,11" />
- <LineSegment Point="6.5,2" />
- <LineSegment Point="8,2" />
- <LineSegment Point="6.5,0" />
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- </Grid>
- </Border>
- </UserControl>
|