WPF更改厚度左边框文本框

时间:2013-05-31 06:27:53

标签: c# wpf textbox border

我要在WPF中更改文本框的粗细,但我不知道如何只更改一个边框。

我该怎么做?

这是我的代码

<TextBox HorizontalAlignment="Left" Height="23" Margin="215,144,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120"/>

2 个答案:

答案 0 :(得分:4)

例如,要设置左边框的粗细,您可以写下:

<TextBox BorderThickness="10,0,0,0" .../>

或者这个:

<TextBox ...>
    <TextBox.BorderThickness>
        <Thickness Left="10"/>
    </TextBox.BorderThickness>
</TextBox>

答案 1 :(得分:0)

<TextBox HorizontalAlignment="Left" Height="23" BorderBrush="Red" Margin="215,144,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="120" BorderThickness="5"/>

应用边框画笔并将BorderThickness =“5,0,0,0”设置为所需的厚度。