Textbox窗框如下划线

时间:2013-06-25 13:54:04

标签: wpf xaml textbox styles

我想将我的文本框设置为仅显示为带下划线的区域。 与下图相似......

enter image description here

我将如何做到这一点?

2 个答案:

答案 0 :(得分:1)

只需在底部放置边框

<TextBox BorderBrush="Black" BorderThickness="0,0,0,2" 
         HorizontalAlignment="Stretch" Height="40" />

答案 1 :(得分:1)

在每个文本框上设置(或使用常规样式..):

BorderBrush="Black" BorderThickness="0,0,0,1" Background="Transparent"