VerticalDynamicEditorGridLayout.xaml 1.7 KB

12345678910111213141516171819202122232425262728293031
  1. <local:DynamicEditorGridLayout x:Class="InABox.DynamicGrid.VerticalDynamicEditorGridLayout"
  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:local="clr-namespace:InABox.DynamicGrid"
  7. xmlns:sf="http://schemas.syncfusion.com/wpf"
  8. mc:Ignorable="d"
  9. d:DesignHeight="450" d:DesignWidth="800">
  10. <Grid SizeChanged="Grid_SizeChanged">
  11. <Grid.RowDefinitions>
  12. <RowDefinition x:Name="EditorRow" Height="Auto"/>
  13. <RowDefinition Height="Auto"/>
  14. <RowDefinition Height="*"/>
  15. </Grid.RowDefinitions>
  16. <local:DynamicTabControl x:Name="Editors"
  17. Grid.Row="0"
  18. SelectionChanged="Editors_SelectionChanged"/>
  19. <sf:SfGridSplitter Grid.Row="1"
  20. Height="4"
  21. HorizontalAlignment="Stretch"
  22. Background="Transparent"
  23. ResizeBehavior="PreviousAndNext"
  24. Template="{StaticResource HorizontalSplitter}"
  25. PreviewStyle="{StaticResource HorizontalSplitterPreview}"/>
  26. <local:DynamicTabControl x:Name="OtherPages"
  27. Grid.Row="2"
  28. SelectionChanged="Editors_SelectionChanged"
  29. TabStripPlacement="Bottom"/>
  30. </Grid>
  31. </local:DynamicEditorGridLayout>