/Main/src/DevSamples/ChartPlotterWithGridSplitters/Window1.xaml
# · XAML · 22 lines · 20 code · 2 blank · 0 comment · 0 complexity · 6f828d306037ae6ec4c505c6ef4cdbfb MD5 · raw file
- <Window x:Class="ChartPlotterWithGridSplitters.Window1"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d3="http://research.microsoft.com/DynamicDataDisplay/1.0"
- Title="Window1" WindowState="Maximized">
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition Height="*"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="*"/>
- <RowDefinition Height="4"/>
- <RowDefinition Height="*"/>
- </Grid.RowDefinitions>
-
- <d3:ChartPlotter Grid.Row="0"/>
- <d3:ChartPlotter Grid.Row="2"/>
- <d3:ChartPlotter Grid.Row="4"/>
-
- <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="1"/>
- <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="3"/>
- </Grid>
- </Window>