我在WPF中有一个标签,我想重新设置,因此它有圆角.
我已经有以下代码:
<Style TargetType="{x:Type Label}">
<Setter Property="Background" Value="Red"/>
<Setter Property="Margin" Value="2,2,2,2"/>
<Setter Property="BorderThickness" Value="2"/>
<Setter Property="BorderBrush" Value="Blue"/>
</Style>
Run Code Online (Sandbox Code Playgroud)
任何人都可以协助我如何在此标签上添加角半径
非常感谢
wpf ×1