Skip to content

Instantly share code, notes, and snippets.

@WamWooWam
Created April 1, 2018 21:28
Show Gist options
  • Save WamWooWam/02b0d181a633afbddbf7f47d14a9ef08 to your computer and use it in GitHub Desktop.
Save WamWooWam/02b0d181a633afbddbf7f47d14a9ef08 to your computer and use it in GitHub Desktop.
<Grid Margin="10">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="Auto"/>
</Grid.RowDefinitions>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="auto"/>
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Rectangle Width="128" Height="128" RadiusX="5" RadiusY="5">
<Rectangle.Fill>
<ImageBrush ImageSource="{StaticResource artTest}"/>
</Rectangle.Fill>
</Rectangle>
<StackPanel Grid.Column="1" VerticalAlignment="Center" Margin="10,0,0,0">
<TextBlock Text="Studiopolis Zone Act 1 ~ Lights, Camera, Action!" TextTrimming="CharacterEllipsis" FontSize="36"/>
<TextBlock Text="Sonic Mania: Original Soundtrack" Foreground="Gray" TextTrimming="CharacterEllipsis" FontSize="24"/>
</StackPanel>
</Grid>
</Grid>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment