Created
November 17, 2014 22:01
-
-
Save bananu7/a9eed70d4adfa05d8654 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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