<UserControl x:Class="FlowItem"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Width="300" Height="300">
<UserControl.Resources>
<Style TargetType="Label">
<Style.Setters>
<Setter Property="Background" Value="AliceBlue" ></Setter>
</Style.Setters>
</Style>
</UserControl.Resources>
<DockPanel Height="300" Width="300" LastChildFill="False" Background="Transparent">
<Label Height="28" DockPanel.Dock="Top"></Label>
<Label Height="28" DockPanel.Dock="Bottom">What ever</Label>
<Label Width="28" DockPanel.Dock="Left"></Label>
<Label Width="28" DockPanel.Dock="Right"></Label>
</DockPanel>
How could I set the Labels' Backgrounds via Styles? Thanks!