Fixed foreground color of log window and small scroll bar.

This commit is contained in:
dbuechel 2019-10-09 09:54:35 +02:00
parent d3d98c7df7
commit 99aa595543
4 changed files with 4 additions and 4 deletions

View file

@ -15,7 +15,7 @@
</Window.Resources>
<Grid>
<ScrollViewer x:Name="ScrollViewer" HorizontalScrollBarVisibility="Auto" Padding="5,5,5,0" VerticalScrollBarVisibility="Auto" Template="{StaticResource SmallBarScrollViewer}">
<TextBlock x:Name="LogContent" FontFamily="Consolas" />
<TextBlock x:Name="LogContent" FontFamily="Consolas" Foreground="White" />
</ScrollViewer>
</Grid>
</Window>

View file

@ -4,7 +4,7 @@
<Rectangle x:Name="Rectangle" Fill="DarkGray" Height="Auto" Width="Auto" />
<ControlTemplate.Triggers>
<Trigger Property="IsDragging" Value="True">
<Setter TargetName="Rectangle" Property="Fill" Value="Black" />
<Setter TargetName="Rectangle" Property="Fill" Value="DimGray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>

View file

@ -16,7 +16,7 @@
<Grid>
<ScrollViewer x:Name="ScrollViewer" HorizontalScrollBarVisibility="Auto" Padding="5,5,5,0" PanningMode="Both" VerticalScrollBarVisibility="Auto"
Template="{StaticResource SmallBarScrollViewer}">
<TextBlock x:Name="LogContent" FontFamily="Consolas" />
<TextBlock x:Name="LogContent" FontFamily="Consolas" Foreground="White" />
</ScrollViewer>
</Grid>
</Window>

View file

@ -4,7 +4,7 @@
<Rectangle x:Name="Rectangle" Fill="DarkGray" Height="Auto" Width="Auto" />
<ControlTemplate.Triggers>
<Trigger Property="IsDragging" Value="True">
<Setter TargetName="Rectangle" Property="Fill" Value="Black" />
<Setter TargetName="Rectangle" Property="Fill" Value="DimGray" />
</Trigger>
</ControlTemplate.Triggers>
</ControlTemplate>