| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.DrawingPointGrab"
- 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="16"
- Height="16"
- Background="Transparent"
- BorderBrush="DimGray"
- BorderThickness="0">
- <Grid>
- <Ellipse x:Name="dot"
- Width="6"
- Height="6"
- Margin="-3,-3,0,0"
- Stroke="White" />
- <Grid x:Name="Arrows">
- <Line x:Name="L1"
- Stroke="White"
- StrokeThickness="1.5"
- X1="0"
- X2="5"
- Y1="7"
- Y2="7" />
- <Line x:Name="L2"
- Stroke="White"
- StrokeThickness="1.5"
- X1="9"
- X2="14"
- Y1="7"
- Y2="7" />
- <Line x:Name="L3"
- Stroke="White"
- StrokeThickness="1.5"
- X1="7"
- X2="7"
- Y1="0"
- Y2="5" />
- <Line x:Name="L4"
- Stroke="White"
- StrokeThickness="1.5"
- X1="7"
- X2="7"
- Y1="9"
- Y2="14" />
- </Grid>
- </Grid>
- </Border>
- </UserControl>
|