Silverlight 4 Setting background color of textbox on focus
- by Sean Riedel
I am trying to set the background color of a Textbox to white on focus using a Style.
My enabled Textbox has a Linear Gradient background by default:
<Setter Property="Background">
<Setter.Value>
<LinearGradientBrush StartPoint="0.5,0" EndPoint="0.5,1">
<GradientStop Color="#e8e8e8"…