2011-11-17 22 views

Respuesta

4

Creo cuadro de texto tiene una propiedad CharacterCasing se puede establecer a Alta

0

Añadir algo así en sus estilos globales en 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> 
Cuestiones relacionadas