| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.DateScaling.FutureDateSplit"
- 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">
- <Border x:Name="theBorder"
- Margin="3,0,3,0"
- Background="Transparent"
- BorderBrush="Transparent"
- BorderThickness="1"
- CornerRadius="4"
- LostMouseCapture="theBorder_LostMouseCapture"
- MouseEnter="theBorder_MouseEnter"
- MouseLeave="theBorder_MouseLeave"
- MouseLeftButtonDown="theBorder_MouseLeftButtonDown"
- MouseLeftButtonUp="theBorder_MouseLeftButtonUp"
- MouseMove="theBorder_MouseMove"
- Padding="2,0,2,0">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition x:Name="rightArrowDef"
- Width="auto"
- MinWidth="10" />
- </Grid.ColumnDefinitions>
- <Path x:Name="arrowLeft"
- Width="10"
- VerticalAlignment="Center"
- Fill="#FF111111"
- Stroke="SteelBlue"
- StrokeEndLineCap="Triangle"
- StrokeThickness="1"
- Visibility="Collapsed">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigureCollection>
- <PathFigure StartPoint="1,5">
- <PathFigure.Segments>
- <LineSegment Point="9,0" />
- <LineSegment Point="9,10" />
- <LineSegment Point="1,5" />
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path x:Name="arrowRight"
- Grid.Column="2"
- Width="10"
- VerticalAlignment="Center"
- Fill="#FF111111"
- Stroke="SteelBlue"
- StrokeEndLineCap="Triangle"
- StrokeThickness="1"
- Visibility="Collapsed">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigureCollection>
- <PathFigure StartPoint="9,5">
- <PathFigure.Segments>
- <LineSegment Point="1,0" />
- <LineSegment Point="1,10" />
- <LineSegment Point="9,5" />
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <StackPanel Grid.Column="1"
- Margin="2,0,3,0"
- Orientation="Horizontal">
- <TextBlock x:Name="theLabel"
- VerticalAlignment="Center"
- Text="" />
- <!--
- <Path x:Name="thePath" Fill="#FF111111" VerticalAlignment="top" >
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures >
- <PathFigureCollection >
- <PathFigure StartPoint="3,0">
- <PathFigure.Segments>
- <LineSegment Point="0,5"></LineSegment>
- <LineSegment Point="6,5"></LineSegment>
- <LineSegment Point="3,0"></LineSegment>
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- -->
- </StackPanel>
- </Grid>
- </Border>
- </UserControl>
|