Use DynamicResource for TextBox SelectionBrush

Changed SelectionBrush in TextBox style from StaticResource to DynamicResource for SystemAccentColorLight1Brush. This enables automatic updates to the selection color when the resource changes at runtime, improving theme responsiveness.
This commit is contained in:
Jack251970 2026-03-01 19:55:12 +08:00
parent dda900041a
commit 1d39a44fc3

View file

@ -52,7 +52,7 @@
<Setter Property="Padding" Value="0 0 50 0" />
<Setter Property="Foreground" Value="{DynamicResource Color05B}" />
<Setter Property="CaretBrush" Value="{DynamicResource Color05B}" />
<Setter Property="SelectionBrush" Value="{StaticResource SystemAccentColorLight1Brush}" />
<Setter Property="SelectionBrush" Value="{DynamicResource SystemAccentColorLight1Brush}" />
<Setter Property="FontSize" Value="16" />
<Setter Property="Height" Value="42" />
</Style>