Skip to content

Commit

Permalink
PTR: Fix high contrast list item display, remove background and add b…
Browse files Browse the repository at this point in the history
…order to display PTR correctly in test page (#1273)
  • Loading branch information
marcelwgn authored and StephenLPeters committed Sep 6, 2019
1 parent fa64d7e commit 04fa768
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ResourceDictionary>
<ResourceDictionary x:Key="HighContrast">
<SolidColorBrush x:Key="RefreshContainerForegroundBrush" Color="{ThemeResource SystemColorHighlightTextColor}"/>
<SolidColorBrush x:Key="RefreshContainerBackgroundBrush" Color="{ThemeResource SystemColorHighlightColor}"/>
<SolidColorBrush x:Key="RefreshContainerBackgroundBrush" Color="Transparent"/>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
<Button x:Name="RVRefreshRequestedComboBoxSwitcher" AutomationProperties.Name="RVRefreshRequestedComboBoxSwitcher" Content="switch" Margin="2"/>
</StackPanel>
<muxcontrols:RefreshContainer x:Name="RefreshContainer" VerticalAlignment="Center" HorizontalAlignment="Center">
<ListView x:Name="listView" Width="400" Height="300" AutomationProperties.Name="listView" Background="Bisque">
<ListView x:Name="listView" Width="400" Height="300" AutomationProperties.Name="listView" BorderBrush="Cyan" BorderThickness="2">
<ListView.Header>
<StackPanel Background="Red">
<TextBlock Text="ListView header"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</ResourceDictionary>
<ResourceDictionary x:Key="HighContrast">
<SolidColorBrush x:Key="RefreshVisualizerForeground" Color="{ThemeResource SystemColorHighlightTextColor}"/>
<SolidColorBrush x:Key="RefreshVisualizerBackground" Color="{ThemeResource SystemColorHighlightColor}"/>
<SolidColorBrush x:Key="RefreshVisualizerBackground" Color="Transparent"/>
</ResourceDictionary>
</ResourceDictionary.ThemeDictionaries>
</ResourceDictionary>

0 comments on commit 04fa768

Please sign in to comment.