/Main/src/DevSamples/ChartPlotterWithGridSplitters/Window1.xaml
XAML | 22 lines | 20 code | 2 blank | 0 comment | 0 complexity | 6f828d306037ae6ec4c505c6ef4cdbfb MD5 | raw file
Possible License(s): CC-BY-SA-3.0
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 15 <d3:ChartPlotter Grid.Row="0"/> 16 <d3:ChartPlotter Grid.Row="2"/> 17 <d3:ChartPlotter Grid.Row="4"/> 18 19 <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="1"/> 20 <GridSplitter HorizontalAlignment="Stretch" Background="Gray" Grid.Row="3"/> 21 </Grid> 22</Window>