自动将WPF TextBox输入转换为All Caps?

时间:2011-11-17 17:30:49

标签: wpf textbox

如何将所有WPF TextBox输入文本转换为Caps?

3 个答案:

答案 0 :(得分:14)

我的猜测是在文本框上设置CharacterCasing property

答案 1 :(得分:4)

我相信TextBox有一个CharacterCasing属性,你可以设置为Upper

答案 2 :(得分:0)

在App.xaml

中的全局样式中添加类似的内容
<Style TargetType="{x:Type TextBox}">        
    <Setter Property="VerticalAlignment" Value="Center"></Setter>
    <Setter Property="Height" Value="28"/>
    <Setter Property="Padding" Value="5"/>
    <Setter Property="CharacterCasing" Value="Upper" />
</Style>