DataDisplayFrame.xaml 977 B

1234567891011121314151617181920
  1. <UserControl x:Class="Aitex.UI.Charting.View.DataDisplayFrame"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:chart="clr-namespace:Aitex.UI.Charting.View"
  7. mc:Ignorable="d"
  8. d:DesignHeight="386" d:DesignWidth="859">
  9. <Grid>
  10. <Grid.RowDefinitions>
  11. <RowDefinition Height="200*" />
  12. <RowDefinition Height="Auto" />
  13. <RowDefinition x:Name="dataCfgViewRow" Height="150" />
  14. </Grid.RowDefinitions>
  15. <chart:PlotView Grid.Row="0"/>
  16. <GridSplitter Grid.Row="1" VerticalAlignment="Stretch" HorizontalAlignment="Stretch" Height="4" />
  17. <chart:PlotConfigTableControl Grid.Row="2" />
  18. </Grid>
  19. </UserControl>