Пытаюсь передать данные Text из Content в TextBlock, находящийся в ControlTemplate. Но что-то не выходит. Что здесь я пропустил?
<Style TargetType="{x:Type Label}" x:Key="Label2">
<Setter Property="Content" Value="{Binding Text}"/>
<Setter Property="Template">
<Setter.Value>
<ControlTemplate>
<Border Margin="2"
HorizontalAlignment="Left"
Background="DarkCyan"
BorderBrush="LightCyan"
BorderThickness="1"
CornerRadius="3">
<TextBlock Margin="0"
Padding="5"
FontSize="13"
FontWeight="Medium"
Foreground="LightCyan"
Text="{Binding Text}"
TextAlignment="Center"/>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>