Created
November 3, 2022 10:14
-
-
Save jesusdesantos/5ca751981496f4331d1cc79425467d5c to your computer and use it in GitHub Desktop.
Right-To-Left UniformGrid
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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