Skip to content

Instantly share code, notes, and snippets.

@IntegerMan
Created October 23, 2019 05:33
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 IntegerMan/334838788fdab523978af7190ef69bf9 to your computer and use it in GitHub Desktop.
Save IntegerMan/334838788fdab523978af7190ef69bf9 to your computer and use it in GitHub Desktop.
<!-- Commands Area -->
<StackPanel DockPanel.Dock="Right" Width="150">
<UniformGrid Rows="3" Columns="3">
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="NW">NW</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="N">N</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="NE">NE</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="W">W</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="Wait">Wait</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="E">E</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="SW">SW</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="S">S</Button>
<Button Style="{StaticResource MoveButtonStyle}" Command="{Binding MoveCommand}" CommandParameter="SE">SE</Button>
</UniformGrid>
<Button Style="{StaticResource CommandButtonStyle}" Command="{Binding ResetCommand}">Restart</Button>
</StackPanel>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment