For data binding it is helpful to think about several things:
- Source Object
- Target Object (which must be a DependencyObject)
- Source Property (the property on the Source Object that is participating in the binding)
- Target Property (which must be a Dependency Property)
In your sample code:
- Source Object = Window1
- Target Object = TextBox
- Source Property = SomeText Property
- Target Property = Text
The Binding markup extension goes on the Target property of the Target object.
Here is a picture which illustrates the above:

Check out the following code (one way to solve this problem):
<Window
x:Class="WpfApplication2.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Name="theWindow"
Title="Window1"
Height="300"
Width="300"
>
<Grid>
<StackPanel>
<TextBox Text="{Binding ElementName=theWindow, Path=SomeText}"/>
<Button
Width="100"
Height="25"
Content="Change Text"
Click="Button_Click"
/>
</StackPanel>
</Grid>
</Window>
In the Binding markup extension, I have defined the source using ElementName ... which allows you to use another element in your visual tree as the source. In doing so, I also had to give the window a name with the x:Name attribute.
There are several ways to define a source with Binding (i.e. Source, ElementName, DataContext) ... ElementName is just one way.
One thing to note is that the Source property doesn't have to be a Dependency Property, but if it isn't, then the Target property won't update ... without some special help.
Check out the following piece of code (my apologies it is C#, that was quicker for me). In it you will see me implement INotifyPropertyChanged. This allows a source object to say that something has changed ... and the data binding is smart enough to watch for it. Thus, if you click the button (from the example code here), it will update the TextBox. Without implementing this interface (and if you click the button), the TextBox would not update.
I hope that helps.
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window, INotifyPropertyChanged
{
public Window1()
{
InitializeComponent();
}
private string _someText = "Hello World!";
public string SomeText
{
get { return _someText; }
set
{
_someText = value;
OnNotifyPropertyChanged("SomeText");
}
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
private void OnNotifyPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
#endregion
private void Button_Click(object sender, RoutedEventArgs e)
{
this.SomeText = "Goodbye World!";
}
}