如何在应用程序资源中指定TextBox Border Cornerradius

时间:2018-11-12 10:05:40

标签: wpf textbox styles border cornerradius

我正在尝试为App.xaml文件中的所有TextBox控件设置边框角半径样式。我不想重新定义整个模板,所以我尝试了下面的代码。但这对TextBox边框没有影响。有谁能做到这一点?

<Application.Resources>
    <Style x:Key="{x:Type TextBox}" TargetType="{x:Type TextBox}">
        <Setter Property="Border.CornerRadius" Value="4"/>
    </Style>
</Application.Resources>

0 个答案:

没有答案