1234567891011121314151617181920 |
- <UserControl x:Class="Aitex.UI.Charting.View.DataDisplayFrame"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:chart="clr-namespace:Aitex.UI.Charting.View"
- mc:Ignorable="d"
- d:DesignHeight="386" d:DesignWidth="859">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="200*" />
- <RowDefinition Height="Auto" />
- <RowDefinition x:Name="dataCfgViewRow" Height="150" />
- </Grid.RowDefinitions>
- <chart:PlotView Grid.Row="0"/>
- <GridSplitter Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Height="4" />
- <chart:PlotConfigTableControl Grid.Row="2" />
- </Grid>
- </UserControl>
|