我正在开发一个包含TextBox
组件的WPF应用程序。
我对文本框的插入符号有疑问。看来,根据TextBox
本身的位置,插入符号会在某些特定位置消失
Caret显示:
Caret消失了:
Caret回归:
TextBox
样式非常简单:
<Style TargetType="{x:Type TextBox}" x:Key="FormTextBox">
<Setter Property="Width" Value="464"/>
<Setter Property="Height" Value="74"/>
<Setter Property="HorizontalAlignment" Value="Left"/>
<Setter Property="FontFamily" Value="Microsoft Sans Serif"/>
<Setter Property="FontSize" Value="43.2"/>
<Setter Property="MaxLength" Value="50"/>
</Style>
我甚至尝试将字体设置为Courier New
,这是等宽字体,同样的事情。