Skip to content

Instantly share code, notes, and snippets.

@DerKnerd
Last active August 29, 2015 14:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DerKnerd/11172239 to your computer and use it in GitHub Desktop.
Save DerKnerd/11172239 to your computer and use it in GitHub Desktop.
<Grid ShowGridLines="True" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<TextBlock>Ich bin in der Column 1</TextBlock>
<TextBlock Grid.Column="1">Ich bin in der Column 2</TextBlock>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment