Skip to content

Instantly share code, notes, and snippets.

@bananu7
Created November 17, 2014 22:01
Show Gist options
  • Save bananu7/a9eed70d4adfa05d8654 to your computer and use it in GitHub Desktop.
Save bananu7/a9eed70d4adfa05d8654 to your computer and use it in GitHub Desktop.
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition Height="Auto" />
<RowDefinition MinHeight="70"/>
</Grid.RowDefinitions>
<GridSplitter HorizontalAlignment="Stretch" Height="10" Margin="0" VerticalAlignment="Stretch" Grid.Row="1" ResizeDirection="Rows"/>
<DockPanel Margin="0">
<Label Content="Display" Height="30" Background="#FF7A1322" Foreground="White" DockPanel.Dock="Top"/>
<RichTextBox Background="#FFB2B2B2" DockPanel.Dock="Bottom" IsReadOnly="True" />
</DockPanel>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment