I have the following Data template with triggers:
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding IsCalled}" Value="Yes">
<Setter TargetName="labelNumber" Property="Background" Value="Green" />
<Setter TargetName="labelNumber" Property="BorderThickness" Value="5" />
<Setter TargetName="labelNumber" Property="BorderBrush" Value="Blue" />
</DataTrigger>
<DataTrigger Binding="{Binding IsCalled}" Value="JustCalled" >
<Setter TargetName="labelNumber" Property="Background" Value="Pink" />
</DataTrigger>
</DataTemplate.Triggers>
</DataTemplate>
Rather than individually set the label properties I want to call a style like the below:
How would get the Data Template to use the style above.
thank you