2011-11-17 22 views

Odpowiedz

4

wierzę TextBox ma właściwość CharacterCasing można ustawić na Górnym

0

Dodaj coś takiego w globalnych stylów w 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>