
正文
WPF:xmal 静动态资源
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
<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>






