/Main/src/DevSamples/ChartPlotterWithGridSplitters/Window1.xaml

# · XAML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · 6f828d306037ae6ec4c505c6ef4cdbfb MD5 · raw file

  1. <Window x:Class="ChartPlotterWithGridSplitters.Window1"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0"
  5. Title="Window1" WindowState="Maximized">
  6. <Grid>
  7. <Grid.RowDefinitions>
  8. <RowDefinition Height="*"/>
  9. <RowDefinition Height="4"/>
  10. <RowDefinition Height="*"/>
  11. <RowDefinition Height="4"/>
  12. <RowDefinition Height="*"/>
  13. </Grid.RowDefinitions>
  14. <d3:ChartPlotter Grid.Row="0"/>
  15. <d3:ChartPlotter Grid.Row="2"/>
  16. <d3:ChartPlotter Grid.Row="4"/>
  17. <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="1"/>
  18. <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="3"/>
  19. </Grid>
  20. </Window>