How to bind a Label with a TextBox

The following code snippet creates a TextBox and a Label and binds the TextBox as Target of Label so whatever is typed in the TextBox, label will display that.

<TextBox Name="TextBox1" Width="50"/>
<Label Target="{Binding ElementName=TextBox1}">_File</Label>