wpf 圆角TextBox 样式_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > wpf 圆角TextBox 样式

wpf 圆角TextBox 样式

 2017/9/1 15:08:54  飞鱼Dream  程序员俱乐部  我要评论(0)
  • 摘要:<Stylex:Key="RoundCornerTextStyle"TargetType="{x:TypeTextBox}"><SetterProperty="Template"><Setter.Value><ControlTemplateTargetType="{x:TypeTextBox}"><Borderx:Name="border"BorderBrush="{TemplateBindingBorderBrush
  • 标签:

<Style x:Key="RoundCornerTextStyle" TargetType="{x:Type TextBox}">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="{x:Type TextBox}">
<Border x:Name="border" BorderBrush="{TemplateBinding BorderBrush}" CornerRadius="5" BorderThickness="{TemplateBinding BorderThickness}" Background="{TemplateBinding Background}" >
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>

  • 相关文章
发表评论
用户名: 匿名