WPF:xmal 静动态资源

时间:2022-06-15 02:52:47
<StackPanel.Resources>
<SolidColorBrush x:Key="myBrush" Color="Teal"/>
</StackPanel.Resources> <!-- StaticResource reference -->
<Label Foreground="{StaticResource myBrush}">Label 1</Label> <!-- DynamicResource reference -->
<Label Foreground="{DynamicResource {x:Static SystemColors.ControlBrushKey}}">Label 2</Label>