Fixed foreground color of log window and small scroll bar.
This commit is contained in:
parent
d3d98c7df7
commit
99aa595543
4 changed files with 4 additions and 4 deletions
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue