DrawingPointGrab.xaml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.DrawingPointGrab"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. mc:Ignorable="d">
  7. <Border x:Name="LayoutRoot"
  8. Width="16"
  9. Height="16"
  10. Background="Transparent"
  11. BorderBrush="DimGray"
  12. BorderThickness="0">
  13. <Grid>
  14. <Ellipse x:Name="dot"
  15. Width="6"
  16. Height="6"
  17. Margin="-3,-3,0,0"
  18. Stroke="White" />
  19. <Grid x:Name="Arrows">
  20. <Line x:Name="L1"
  21. Stroke="White"
  22. StrokeThickness="1.5"
  23. X1="0"
  24. X2="5"
  25. Y1="7"
  26. Y2="7" />
  27. <Line x:Name="L2"
  28. Stroke="White"
  29. StrokeThickness="1.5"
  30. X1="9"
  31. X2="14"
  32. Y1="7"
  33. Y2="7" />
  34. <Line x:Name="L3"
  35. Stroke="White"
  36. StrokeThickness="1.5"
  37. X1="7"
  38. X2="7"
  39. Y1="0"
  40. Y2="5" />
  41. <Line x:Name="L4"
  42. Stroke="White"
  43. StrokeThickness="1.5"
  44. X1="7"
  45. X2="7"
  46. Y1="9"
  47. Y2="14" />
  48. </Grid>
  49. </Grid>
  50. </Border>
  51. </UserControl>