Skip to content

Instantly share code, notes, and snippets.

@jesusdesantos
Created November 3, 2022 10:14
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 jesusdesantos/5ca751981496f4331d1cc79425467d5c to your computer and use it in GitHub Desktop.
Save jesusdesantos/5ca751981496f4331d1cc79425467d5c to your computer and use it in GitHub Desktop.
Right-To-Left UniformGrid
<Page xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<UniformGrid Rows="2" Columns="4" FlowDirection="RightToLeft">
<Label Content="1" Background="Black"/>
<Label Content="2" Background="DarkGray"/>
<Label Content="3" Background="Teal"/>
<Label Content="4" Background="Navy"/>
<Label Content="5" Background="DarkOrchid"/>
<Label Content="6" Background="Maroon"/>
<Label Content="7" Background="DodgerBlue"/>
<Label Content="8" Background="IndianRed"/>
</UniformGrid>
</Page>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment