| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.ExtendableLine"
- 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:drawing="clr-namespace:MuchInfo.Chart.WPF.Controls.Drawing"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- mc:Ignorable="d">
- <Canvas x:Name="LayoutRoot">
- <Line x:Name="lineTopTopMain"
- Stroke="White"
- Visibility="Collapsed"
- X1="20"
- X2="40"
- Y1="20"
- Y2="40" />
- <Line x:Name="lineTopTopLeft"
- Stroke="Red"
- Visibility="Collapsed"
- X1="0"
- X2="20"
- Y1="0"
- Y2="20" />
- <Line x:Name="lineTopTopRight"
- Stroke="Red"
- Visibility="Collapsed"
- X1="40"
- X2="60"
- Y1="40"
- Y2="60" />
- <Line x:Name="lineTopMain"
- Stroke="White"
- Visibility="Collapsed"
- X1="20"
- X2="40"
- Y1="20"
- Y2="40" />
- <Line x:Name="lineTopLeft"
- Stroke="Red"
- Visibility="Collapsed"
- X1="0"
- X2="20"
- Y1="0"
- Y2="20" />
- <Line x:Name="lineTopRight"
- Stroke="Red"
- Visibility="Collapsed"
- X1="40"
- X2="60"
- Y1="40"
- Y2="60" />
- <Line x:Name="lineBotMain"
- Stroke="White"
- Visibility="Collapsed"
- X1="20"
- X2="40"
- Y1="20"
- Y2="40" />
- <Line x:Name="lineBotLeft"
- Stroke="Red"
- Visibility="Collapsed"
- X1="0"
- X2="20"
- Y1="0"
- Y2="20" />
- <Line x:Name="lineBotRight"
- Stroke="Red"
- Visibility="Collapsed"
- X1="40"
- X2="60"
- Y1="40"
- Y2="60" />
- <Line x:Name="lineBotBotMain"
- Stroke="White"
- Visibility="Collapsed"
- X1="20"
- X2="40"
- Y1="20"
- Y2="40" />
- <Line x:Name="lineBotBotLeft"
- Stroke="Red"
- Visibility="Collapsed"
- X1="0"
- X2="20"
- Y1="0"
- Y2="20" />
- <Line x:Name="lineBotBotRight"
- Stroke="Red"
- Visibility="Collapsed"
- X1="40"
- X2="60"
- Y1="40"
- Y2="60" />
- <Line x:Name="lineMain"
- Stroke="White"
- X1="20"
- X2="40"
- Y1="20"
- Y2="40" />
- <Line x:Name="lineLeft"
- Stroke="Red"
- Visibility="Collapsed"
- X1="0"
- X2="20"
- Y1="0"
- Y2="20" />
- <Line x:Name="lineRight"
- Stroke="Red"
- Visibility="Collapsed"
- X1="40"
- X2="60"
- Y1="40"
- Y2="60" />
- <drawing:DrawingSelectionGrab x:Name="grabSelection" />
- <drawing:DrawingChannelGrab x:Name="grabTop" Visibility="Collapsed" />
- <drawing:DrawingChannelGrab x:Name="grabBot" Visibility="Collapsed" />
- <drawing:DrawingPointGrab x:Name="grabLeft"
- Canvas.Left="13"
- Canvas.Top="13" />
- <drawing:DrawingPointGrab x:Name="grabRight"
- Canvas.Left="33"
- Canvas.Top="33" />
- </Canvas>
- </UserControl>
|