Skip to content

Instantly share code, notes, and snippets.

@snotskie
Created August 25, 2017 15:27
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/eaac806d451683507e0e31cc6b501738 to your computer and use it in GitHub Desktop.
Save snotskie/eaac806d451683507e0e31cc6b501738 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="800"
Height="300">
<ScrollViewer HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
<StackPanel Background="#EEEEEE">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0" Orientation="Horizontal">
<Button>Home</Button>
<Button>Moments</Button>
<Button>Notifications</Button>
<Button>Messages</Button>
<Border Width="30" Height="30">
<Image Source="https://www.seeklogo.net/wp-content/uploads/2011/06/twitter-bird-vector-400x400.png" Stretch="Uniform" />
</Border>
</StackPanel>
<StackPanel Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Right">
<TextBox Width="100">Search</TextBox>
<Button>Tweet</Button>
</StackPanel>
</Grid>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<StackPanel Grid.Column="0">
<Border Width="150" Height="150">
<Image Source="http://bhcourier.com/wp-content/uploads/2017/04/Civ9AUkVAAAwihS.jpg" Stretch="Uniform" />
</Border>
<Button>My Account: @cit143</Button>
<Button>Tweets: 89k</Button>
<Button>Following: 5000</Button>
<Button>Followers: 3</Button>
<Button>#FlashbackFriday</Button>
<TextBlock>Trends for You</TextBlock>
<Button>#FlashbackFriday</Button>
<Button>Hurricane Harvey</Button>
</StackPanel>
<StackPanel Grid.Column="1">
<TextBlock>Post #1</TextBlock>
<TextBlock>Post #2</TextBlock>
<TextBlock>Post #3</TextBlock>
</StackPanel>
<StackPanel Grid.Column="2">
<TextBlock>Who to follow:</TextBlock>
<Button>Follow Taylor Swift</Button>
<Button>Follow Cher</Button>
<Button>Follow Santa Claus</Button>
<TextBlock>Live video</TextBlock>
<Button>Watch CSPAN Live Now!</Button>
<TextBlock>Legal links</TextBlock>
<Button>Read Terms and Stuff</Button>
</StackPanel>
</Grid>
</StackPanel>
</ScrollViewer>
</Window>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment