Skip to content

Instantly share code, notes, and snippets.

@snotskie
Created August 24, 2017 15:03
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 snotskie/d80510f7e7f9711171809e4c46d44570 to your computer and use it in GitHub Desktop.
Save snotskie/d80510f7e7f9711171809e4c46d44570 to your computer and use it in GitHub Desktop.
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="640"
Height="300"
Background="#FF0000">
<StackPanel Background="#000000">
<Grid Background="#FF0000">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Orientation="Horizontal">
<TextBlock>Links</TextBlock>
<TextBlock>Logo</TextBlock>
</StackPanel>
<StackPanel Grid.Column="1" Orientation="Horizontal">
<TextBlock>Search</TextBlock>
<TextBlock>Tweet</TextBlock>
</StackPanel>
</Grid>
<Grid Background="#00FF00">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Background="#FFFF00">
<TextBlock>About Me</TextBlock>
<TextBlock>Trends</TextBlock>
</StackPanel>
<StackPanel Grid.Column="1" Background="#FF00FF">
<TextBlock>Post #1</TextBlock>
<TextBlock>Post #2</TextBlock>
<TextBlock>Post #3</TextBlock>
</StackPanel>
<StackPanel Grid.Column="2" Background="#00FFFF">
<TextBlock>Who to follow</TextBlock>
<TextBlock>Live video</TextBlock>
<TextBlock>Legal links</TextBlock>
</StackPanel>
</Grid>
</StackPanel>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment