I have the following style:
<Style x:Key="WhiteStyle" TargetType="{x:Type Label}">
<Setter Property="BorderBrush" Value="White"/>
<Setter Property="BorderThickness" Value="2"/>
</Style>
However, I would like to add the property CornerRadius
and modify the value. Unfortunately, the XAML error says a Label
does not have a CornerRadius
property. My question, How must I modify this XAML?
Thanks,