|
27 | 27 | <Grid RowDefinitions="auto,*"> |
28 | 28 | <Grid ColumnDefinitions="2*,16*"> |
29 | 29 | <StackPanel Grid.Row="0" Spacing="2" Orientation="Horizontal" Margin="2" HorizontalAlignment="Center"> |
30 | | - <ToggleButton Classes="dialog" Name="btnMemoryAddressHexFormat" IsChecked="{Binding Path=!#MemoryDecimalMode}" ToolTip.Tip="Display memory address as Hexadecimal"> |
31 | | - Hex |
| 30 | + <ToggleButton FontWeight="Bold" Width="30" Foreground="Black" Classes="toolbar" Name="btnMemoryAddressHexFormat" IsChecked="{Binding Path=!#MemoryDecimalMode}" ToolTip.Tip="Display memory address as Hexadecimal"> |
| 31 | + 0x0 |
32 | 32 | </ToggleButton> |
33 | | - <ToggleButton Classes="dialog" Name="btnMemoryAddressDecFormat" IsChecked="{Binding Path=#MemoryDecimalMode}" ToolTip.Tip="Display memory address as Decimal"> |
34 | | - Dec |
| 33 | + <ToggleButton FontWeight="Bold" Width="30" Foreground="Black" Classes="toolbar" Name="btnMemoryAddressDecFormat" IsChecked="{Binding Path=#MemoryDecimalMode}" ToolTip.Tip="Display memory address as Decimal"> |
| 34 | + 00 |
35 | 35 | </ToggleButton> |
36 | 36 | </StackPanel> |
37 | 37 | <StackPanel Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Center"> |
38 | | - <ToggleButton Classes="dialog" Name="btnSwitchHexFormat" IsChecked="{Binding Path=!#ASCIIMode}" ToolTip.Tip="Display memory content as HEX"> |
39 | | - Hex |
| 38 | + <ToggleButton FontWeight="Bold" Width="30" Foreground="Black" Classes="toolbar" Name="btnSwitchHexFormat" IsChecked="{Binding Path=!#ASCIIMode}" ToolTip.Tip="Display memory content as HEX"> |
| 39 | + 0x0 |
40 | 40 | </ToggleButton> |
41 | | - <ToggleButton Classes="dialog" Name="btnSwitchASCIIFormat" IsChecked="{Binding Path=#ASCIIMode}" ToolTip.Tip="Display memory content as ASCII"> |
42 | | - ASCII |
| 41 | + <ToggleButton Margin="2,0,0,0" FontWeight="Bold" Width="30" Foreground="Black" Classes="toolbar" Name="btnSwitchASCIIFormat" IsChecked="{Binding Path=#ASCIIMode}" ToolTip.Tip="Display memory content as ASCII"> |
| 42 | + Ab |
43 | 43 | </ToggleButton> |
44 | | - <Border Classes="numericBorder" Margin="24,0,5,0"> |
45 | | - <NumericUpDown Margin="3,0" MinWidth="80" Classes="dialog" VerticalAlignment="Center" |
| 44 | + <NumericUpDown Background="#303030" Height="24" Margin="15,0,5,0" MinWidth="80" Classes="dialog" VerticalAlignment="Center" |
46 | 45 | HorizontalAlignment="Left" ParsingNumberStyle="Integer" Increment="1" Minimum="0" |
47 | 46 | Maximum="65535" Value="0" Name="nudAddress"> |
48 | 47 | </NumericUpDown> |
49 | | - </Border> |
50 | | - <Button Classes="dialog" VerticalAlignment="Center" HorizontalAlignment="Right" Padding="7" Name="btnGoto">Goto</Button> |
| 48 | + <Button Classes="toolbar" VerticalAlignment="Center" HorizontalAlignment="Right" Name="btnGoto" ToolTip.Tip="Go to address"> |
| 49 | + <svg:Svg Path="/Svg/magnifying-glass-arrow-right-solid.svg"></svg:Svg> |
| 50 | + </Button> |
51 | 51 | </StackPanel> |
52 | 52 | </Grid> |
53 | 53 | <Grid Grid.Row="1" ColumnDefinitions="*,32"> |
|
0 commit comments