Skip to content

Commit 9e57757

Browse files
committed
Incorrect Bindings to Color resources rather than Brush reasources
1 parent 9f316f1 commit 9e57757

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Microsoft.Toolkit.Uwp.UI.Controls/InfiniteCanvas/InfiniteCanvas.xaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
</InkToolbarCustomToolButton>
3030
</InkToolbar>
3131

32-
<StackPanel Background="{ThemeResource SystemChromeMediumColor}"
32+
<StackPanel Background="{ThemeResource SystemControlBackgroundChromeMediumBrush}"
3333
Orientation="Horizontal">
3434
<Grid Width="2"
3535
Height="48"
36-
Background="{ThemeResource SystemListMediumColor}" />
36+
Background="{ThemeResource SystemControlBackgroundListMediumBrush}" />
3737
<Button x:Name="EraseAllButton"
3838
Style="{StaticResource CanvasTextBoxButtonStyle}"
3939
ToolTipService.ToolTip="Erase All">
@@ -57,7 +57,7 @@
5757
</Button>
5858
</StackPanel>
5959
<StackPanel x:Name="CanvasTextBoxTools"
60-
Background="{ThemeResource SystemChromeMediumColor}"
60+
Background="{ThemeResource SystemControlBackgroundChromeMediumBrush}"
6161
Orientation="Horizontal"
6262
Visibility="Collapsed">
6363
<Grid Width="2"
@@ -157,14 +157,14 @@
157157
TargetType="ToggleButton">
158158
<Setter Property="Width" Value="48" />
159159
<Setter Property="Height" Value="48" />
160-
<Setter Property="Background" Value="{ThemeResource SystemChromeMediumColor}" />
160+
<Setter Property="Background" Value="{ThemeResource SystemControlBackgroundChromeMediumBrush}" />
161161
<Setter Property="Foreground" Value="{ThemeResource SystemControlForegroundBaseHighBrush}" />
162162
</Style>
163163
<Style x:Key="CanvasTextBoxButtonStyle"
164164
TargetType="Button">
165165
<Setter Property="Width" Value="48" />
166166
<Setter Property="Height" Value="48" />
167-
<Setter Property="Background" Value="{ThemeResource SystemChromeMediumColor}" />
167+
<Setter Property="Background" Value="{ThemeResource SystemControlBackgroundChromeMediumBrush}" />
168168
<Setter Property="Foreground" Value="{ThemeResource SystemControlForegroundBaseHighBrush}" />
169169
</Style>
170170

0 commit comments

Comments
 (0)