2011-11-17 17 views

risposta

4

Credo TextBox ha una proprietà CharacterCasing è possibile impostare Upper

0

Aggiungere qualcosa di simile nei vostri stili globali in 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>