Text Box which Blends into background

silverlight, windows-phone-7, wpf

Solution

Take a `TextBox` with transparent background, put it on top of your notebook paper image and align font size so it looks as desired. You may want to wrap `TextBox` with `ViewBox`

 <TextBox TextWrapping="Wrap" Background="{x:Null}"/>

Or use a `TextBox` with notebook paper image as background:

 <TextBox TextWrapping="Wrap">
    <TextBox.Background>
       <ImageBrush ImageSource="notebook-paper.png"/>
    </TextBox.Background>
 </TextBox>

Problem

How do I create a Text Box which Blends into the background page, the idea here is i want to create NoteBook like Effect with lines and user types on lines ( just like writing in Notebook with lines).

Original source