我为我的TextBox
控件编写了一个自定义样式,现在当我使用它时,我无法TextBox
在运行时输入文本。这是我的风格:
<Style x:Key="TextBoxStyle"
TargetType="TextBox" >
<Setter Property="Height" Value="41"></Setter>
<Setter Property="Width" Value="114"></Setter>
<Setter Property="Foreground" Value="#FFDDDDDD"></Setter>
<Setter Property="Focusable" Value="False"></Setter>
<Setter Property="FontFamily" Value="Verdana"></Setter>
<Setter Property="FontSize" Value="18"></Setter>
<Setter Property="FontWeight" Value="Regular"></Setter>
<Setter Property="TextAlignment" Value="Center"></Setter>
<Setter Property="IsReadOnly" Value="False"></Setter>
<Setter Property="BorderBrush" Value="{x:Null}"></Setter>
<Setter Property="HorizontalContentAlignment" Value="Center"></Setter>
<Setter Property="VerticalContentAlignment" Value="Center"></Setter>
<Setter Property="Background">
<Setter.Value>
<ImageBrush ImageSource="/App;component/Images/BarsForms/precent_bg.png" Stretch="UniformToFill" TileMode="None" />
</Setter.Value>
</Setter>
</Style>