Download TwitterTextBox for WPF Demo and Source Code
View Image
Introduction
This tip was written to demonstrate how to customize the rendering of the standard TextBox control provided by Microsoft. You can use this custom style to achieve the Twitter's TextBox look and feel.
Using the Style
To make use of the custom Style you need to set the Style property of your TextBox controls.
The example code below demonstrates how to apply the style:
<TextBox Style="{StaticResource TwitterTextBoxStyle}" Height="25" Name="textBox1" Width="300" />
Points of Interest
I have made this TextBox Style as part of my university project. I wanted to add to my application some cool glow effects and animations.