Skip to content

Commit

Permalink
Bold Buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
VolkerWollmann committed Jan 17, 2021
1 parent 5ec300c commit e085ee9
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions MyMasterMind/MyMasterMind/Controls/MasterMindCommands.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,22 +9,22 @@
<Border Name="BoardBorder" BorderThickness="3,3,3,3" BorderBrush="Black">
<StackPanel HorizontalAlignment="Stretch" >
<Button Name="ButtonCommandClear" IsEnabled="True" Height="50" Margin="10,10,10,10" Click="ButtonCommand_Click">
Clear
<TextBlock><Bold>Clear</Bold></TextBlock>
</Button>
<Button Name="ButtonCommandComputerFast" Height="50" Margin="10,10,10,10" Click="ButtonCommand_Click">
Computer (fast)
<TextBlock><Bold> Computer (fast)</Bold></TextBlock>
</Button>
<Button Name="ButtonCommandComputerSlow" Height="50" Margin="10,10,10,10" Click="ButtonCommand_Click">
Computer (slow)
<TextBlock><Bold> Computer (slow)</Bold></TextBlock>
</Button>
<Button Name="ButtonCommandCancel" IsEnabled="False" Height="50" Margin="10,10,10,10" Click="ButtonCommand_Click">
Cancel
<TextBlock><Bold>Cancel</Bold></TextBlock>
</Button>
<Button Name="ButtonCommandUser" IsEnabled="True" Height="50" Margin="10,10,10,10" Click="ButtonCommand_Click">
User
<TextBlock><Bold>User</Bold></TextBlock>
</Button>
<Button Name="ButtonCommandCheck" Click="ButtonCommand_Click" IsEnabled="False" Height="50" Margin="10,10,10,10" >
Check
<TextBlock><Bold>Check</Bold></TextBlock>
</Button>
</StackPanel>
</Border>
Expand Down

0 comments on commit e085ee9

Please sign in to comment.