如何改变Button Border CornerRadius?

时间:2017-04-27 03:43:24

标签: wpf xaml

我只是不明白为什么我的代码不起作用。我只想改变一个Button的边框,我看到有人使用TargetType="{x:Type Button}",它不能满足我的需求!而Set CornerRadius on button template中的答案解释了如何更改CornerRadius,我知道如何更改CornerRadius,但我真的不知道为什么我的代码只能用于一个按钮。

<Button Content="OK" BorderThickness="1">
    <Button.Resources>
        <Style TargetType="{x:Type Border}">
            <Setter Property="CornerRadius" Value="10"/>
        </Style>
    </Button.Resources>
</Button>

1 个答案:

答案 0 :(得分:0)

看来你是新手,我建议你在Blend中分离Button来学习如何改变边框