<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>