| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.ChartToolbarExpander"
- 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">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="*" MinWidth="3" />
- </Grid.ColumnDefinitions>
- <Border x:Name="borderHeader"
- Margin="2,0,0,0"
- VerticalAlignment="Center"
- Background="Transparent"
- BorderBrush="LightSteelBlue"
- BorderThickness="0"
- CornerRadius="2"
- MouseEnter="borderHeader_MouseEnter"
- MouseLeave="borderHeader_MouseLeave"
- MouseLeftButtonDown="borderHeader_MouseLeftButtonDown"
- Padding="1">
- <Grid x:Name="ButtonGrid" Margin="1,3,5,3">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="auto" />
- </Grid.ColumnDefinitions>
- <Image x:Name="imgDraw"
- Margin="1,0,1,0"
- VerticalAlignment="Center"
- Stretch="None" />
- <TextBlock x:Name="DrawTextBlock"
- Grid.Column="1"
- Margin="2,0,2,0"
- VerticalAlignment="Center"
- Foreground="White"
- Visibility="Collapsed" />
- <!-- Text="{DynamicResource DrawingTool_Expander_Title}" -->
- <Path x:Name="pathDropArrow"
- Grid.Column="2"
- VerticalAlignment="Center"
- Fill="White"
- Visibility="Collapsed">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigureCollection>
- <PathFigure StartPoint="6,0">
- <PathFigure.Segments>
- <LineSegment Point="14,0" />
- <LineSegment Point="10,5" />
- <LineSegment Point="6,0" />
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <Path x:Name="pathUpArrow"
- Grid.Column="2"
- VerticalAlignment="Center"
- Fill="White">
- <Path.Data>
- <PathGeometry>
- <PathGeometry.Figures>
- <PathFigureCollection>
- <PathFigure StartPoint="6,5">
- <PathFigure.Segments>
- <LineSegment Point="14,5" />
- <LineSegment Point="10,0" />
- <LineSegment Point="6,5" />
- </PathFigure.Segments>
- </PathFigure>
- </PathFigureCollection>
- </PathGeometry.Figures>
- </PathGeometry>
- </Path.Data>
- </Path>
- <!-- <TextBlock Text="X" Foreground="Red" Margin="2,-2,2,-2"></TextBlock> -->
- </Grid>
- </Border>
- <Border Grid.Column="1"
- Margin="4,3,0,3"
- HorizontalAlignment="Right"
- BorderBrush="DimGray"
- BorderThickness="1,0,1,0" />
- </Grid>
- </UserControl>
|