| 1234567891011121314151617181920212223242526272829303132 |
- <UserControl x:Class="MuchInfo.Chart.Infrastructure.Controls.FlatToolbarTextButton"
- 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 x:Name="LayoutRoot">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto" />
- <ColumnDefinition Width="*" />
- <ColumnDefinition Width="auto" />
- </Grid.ColumnDefinitions>
- <Border x:Name="theBorder"
- Grid.ColumnSpan="2"
- Margin="0,1,0,1"
- Background="Transparent"
- BorderBrush="LightSteelBlue"
- BorderThickness="0"
- CornerRadius="2"
- MouseEnter="theBorder_MouseEnter"
- MouseLeave="theBorder_MouseLeave"
- MouseLeftButtonDown="theBorder_MouseLeftButtonDown"
- MouseLeftButtonUp="theBorder_MouseLeftButtonUp"
- Padding="1">
- <StackPanel x:Name="stackText"
- VerticalAlignment="Center"
- Orientation="Vertical">
- <TextBlock x:Name="theText" Margin="3,0,3,0" />
- </StackPanel>
- </Border>
- </Grid>
- </UserControl>
|