I wrote a custom style for my TextBox controls and now when I'm using it, I cannot type text to my TextBox while running.
Here is my style:
<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>