|
30 | 30 | <Button.Content> |
31 | 31 | <StackPanel Orientation="Horizontal"> |
32 | 32 | <Image Source="pack://application:,,,/images/about.png" Width="16" Height="16" Margin="0,0,5,0" /> |
33 | | - <TextBlock Text="About" Foreground="#121518" VerticalAlignment="Center" /> |
| 33 | + <TextBlock Text="About" Foreground="{StaticResource ButtonTextDarkBrush}" VerticalAlignment="Center" /> |
34 | 34 | </StackPanel> |
35 | 35 | </Button.Content> |
36 | 36 | </Button> |
37 | 37 | <Button Click="ExitMenuItem_Click" Style="{StaticResource ActionButtonStyle}" Background="{StaticResource ExitButtonBrush}" ToolTip="Close the application"> |
38 | 38 | <Button.Content> |
39 | 39 | <StackPanel Orientation="Horizontal"> |
40 | 40 | <Image Source="pack://application:,,,/images/exit.png" Width="16" Height="16" Margin="0,0,5,0" /> |
41 | | - <TextBlock Text="Exit" Foreground="#121518" VerticalAlignment="Center" /> |
| 41 | + <TextBlock Text="Exit" Foreground="{StaticResource ButtonTextDarkBrush}" VerticalAlignment="Center" /> |
42 | 42 | </StackPanel> |
43 | 43 | </Button.Content> |
44 | 44 | </Button> |
|
61 | 61 | <ColumnDefinition Width="*" MinWidth="300" /> |
62 | 62 | </Grid.ColumnDefinitions> |
63 | 63 |
|
64 | | - <TabControl Grid.Column="0" x:Name="MainTabControl" SelectionChanged="MainTabControl_SelectionChanged" Background="Transparent" BorderThickness="0"> |
| 64 | + <TabControl Grid.Column="0" x:Name="MainTabControl" SelectionChanged="MainTabControl_SelectionChanged"> |
65 | 65 | <TabItem Header="Convert to CHD" x:Name="ConvertTab" ToolTip="Batch convert various disc image formats to CHD"> |
66 | 66 | <Border Background="{StaticResource CardBackgroundBrush}" BorderBrush="{StaticResource BorderBrush}" BorderThickness="1" CornerRadius="0,0,6,6" Padding="15"> |
67 | 67 | <Grid> |
|
123 | 123 | <Button Content="Deselect All" Click="DeselectAllConversion_Click" Style="{StaticResource ActionButtonStyle}" Margin="5,0" /> |
124 | 124 | </StackPanel> |
125 | 125 |
|
126 | | - <Button Grid.Row="6" x:Name="StartConversionButton" Content="Start Conversion" Click="StartConversionButton_Click" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch conversion process" /> |
| 126 | + <Button Grid.Row="6" x:Name="StartConversionButton" Content="Start Conversion" Click="StartConversionButton_ClickAsync" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch conversion process" /> |
127 | 127 | </Grid> |
128 | 128 | </Border> |
129 | 129 | </TabItem> |
|
173 | 173 | <Button Content="Deselect All" Click="DeselectAllVerification_Click" Style="{StaticResource ActionButtonStyle}" Margin="5,0" /> |
174 | 174 | </StackPanel> |
175 | 175 |
|
176 | | - <Button Grid.Row="5" x:Name="StartVerificationButton" Content="Start Verification" Click="StartVerificationButton_Click" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch verification process" /> |
| 176 | + <Button Grid.Row="5" x:Name="StartVerificationButton" Content="Start Verification" Click="StartVerificationButton_ClickAsync" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch verification process" /> |
177 | 177 | </Grid> |
178 | 178 | </Border> |
179 | 179 | </TabItem> |
|
256 | 256 | <Button Content="Deselect All" Click="DeselectAllExtraction_Click" Style="{StaticResource ActionButtonStyle}" Margin="5,0" /> |
257 | 257 | </StackPanel> |
258 | 258 |
|
259 | | - <Button Grid.Row="6" x:Name="StartExtractionButton" Content="Start Extraction" Click="StartExtractionButton_Click" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch extraction process" /> |
| 259 | + <Button Grid.Row="6" x:Name="StartExtractionButton" Content="Start Extraction" Click="StartExtractionButton_ClickAsync" Style="{StaticResource StartButtonStyle}" HorizontalAlignment="Stretch" ToolTip="Begin the batch extraction process" /> |
260 | 260 | </Grid> |
261 | 261 | </Border> |
262 | 262 | </TabItem> |
263 | 263 | </TabControl> |
264 | 264 |
|
265 | | - <GridSplitter Grid.Column="1" Width="10" HorizontalAlignment="Stretch" Background="Transparent" /> |
| 265 | + <GridSplitter Grid.Column="1" Width="10" HorizontalAlignment="Stretch" /> |
266 | 266 |
|
267 | 267 | <Border Grid.Column="2" BorderBrush="{StaticResource TerminalBorderBrush}" BorderThickness="2" CornerRadius="4" Background="{StaticResource TerminalBackgroundBrush}"> |
268 | 268 | <TextBox x:Name="LogViewer" |
269 | | - AcceptsReturn="True" |
270 | | - VerticalScrollBarVisibility="Auto" |
271 | | - HorizontalScrollBarVisibility="Auto" |
272 | | - VerticalAlignment="Stretch" |
273 | | - VerticalContentAlignment="Top" |
274 | | - IsReadOnly="True" |
275 | | - Padding="10" |
276 | | - FontFamily="Consolas" |
277 | | - FontSize="12" |
278 | | - Background="{StaticResource TerminalBackgroundBrush}" |
279 | | - Foreground="{StaticResource TerminalForegroundBrush}" |
280 | | - BorderThickness="0" |
281 | | - TextAlignment="Left" |
282 | | - TextWrapping="NoWrap" |
283 | | - CaretBrush="{StaticResource TerminalForegroundBrush}" |
284 | | - ToolTip="Application activity log"> |
285 | | - <TextBox.Effect> |
286 | | - <DropShadowEffect ShadowDepth="0" Color="#39FF14" BlurRadius="2" Opacity="0.4" /> |
287 | | - </TextBox.Effect> |
288 | | - </TextBox> |
| 269 | + Style="{StaticResource TerminalLogTextBoxWithGlow}" |
| 270 | + ToolTip="Application activity log" /> |
289 | 271 | </Border> |
290 | 272 | </Grid> |
291 | 273 |
|
|
0 commit comments