| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.ValueScaling.ValueScaleDisplayCollection"
- 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">
- <Grid x:Name="LayoutRoot">
- <StackPanel x:Name="stackMain"
- HorizontalAlignment="Stretch"
- Orientation="Horizontal" />
- <Border x:Name="borderControls"
- Height="16"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Bottom"
- Background="Transparent"
- MouseEnter="borderControls_MouseEnter"
- MouseLeave="borderControls_MouseLeave">
- <Border x:Name="borderRight"
- HorizontalAlignment="Right"
- VerticalAlignment="Bottom"
- Background="DimGray"
- BorderBrush="DarkGray"
- BorderThickness="1"
- CornerRadius="4"
- MouseEnter="borderRight_MouseEnter"
- MouseLeave="borderRight_MouseLeave"
- MouseLeftButtonDown="borderRight_MouseLeftButtonDown"
- Opacity=".5"
- Padding="6,2,3,0">
- <Grid>
- <Line Stroke="White"
- StrokeEndLineCap="Triangle"
- StrokeStartLineCap="Triangle"
- StrokeThickness="3"
- X1="0"
- X2="5"
- Y1="0"
- Y2="4" />
- <Line Stroke="White"
- StrokeEndLineCap="Triangle"
- StrokeStartLineCap="Triangle"
- StrokeThickness="3"
- X1="5"
- X2="0"
- Y1="4"
- Y2="8" />
- </Grid>
- </Border>
- </Border>
- </Grid>
- </UserControl>
|