Created
April 11, 2023 09:33
-
-
Save s-fernandez-v/75228d301d0d9f9753efba5984a9ff1a to your computer and use it in GitHub Desktop.
Focus navigation
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
<Grid | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> | |
<Grid x:Name="MenuOptions" Grid.Row="1" Width="640" Margin="0,30,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" Height="300"> | |
<StackPanel KeyboardNavigation.DirectionalNavigation="Contained" KeyboardNavigation.TabNavigation="Contained"> | |
<Rectangle Height="2" Margin="0,0,0,2" Fill="Silver"/> | |
<ToggleButton x:Name="Casual" Content="CASUAL" Command="{Binding StartCasual}"/> | |
<ToggleButton x:Name="Normal" Content="NORMAL" Command="{Binding StartNormal}"/> | |
<ToggleButton x:Name="Expert" Content="EXPERT" Command="{Binding StartExpert}"/> | |
</StackPanel> | |
<ToggleButton VerticalAlignment="Bottom" Content="reee" Command="{Binding StartCasual}" Height="48"/> | |
</Grid> | |
</Grid> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment