| 1234567891011121314151617181920212223242526 |
- <UserControl x:Class="MuchInfo.Chart.WPF.Controls.Drawing.ChartDrawingToolbar"
- 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="borderToolbar"
- Margin="3"
- HorizontalAlignment="Stretch"
- VerticalAlignment="Stretch"
- SizeChanged="borderToolbar_SizeChanged">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="Auto" />
- <ColumnDefinition Width="Auto" />
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="Auto" />
- <RowDefinition Height="*" />
- </Grid.RowDefinitions>
- <StackPanel x:Name="theStack1" Orientation="Vertical" />
- <StackPanel x:Name="theStack2"
- Grid.Column="1"
- Orientation="Vertical" />
- </Grid>
- </UserControl>
|