<Window.Resources>
    <local:Person x:Key="mydatasource" Name="张三" ></local:Person>
</Window.Resources>
<Grid HorizontalAlignment="Left" Height="289" VerticalAlignment="Top" Width="533" DataContext="{StaticResource mydatasource}">
    <TextBox Name="textbox1" Text="{Binding Path=Name}" HorizontalAlignment="Left" Height="23" Margin="120,131,0,0" TextWrapping="Wrap" VerticalAlignment="Top" Width="120"/>
    <Button Content="Button" HorizontalAlignment="Left" Height="29" Margin="275,164,0,0" VerticalAlignment="Top" Width="76" Click="Button_Click"/>
    <TextBox Name="textbox2" HorizontalAlignment="Left" Height="23" Margin="120,192,0,0" TextWrapping="Wrap" Text="{Binding Path=Name}" VerticalAlignment="Top" Width="120"/>        
</Grid>
private void Button_Click(object sender, RoutedEventArgs e)
{
    textbox1.Text = "李四";
}
 class Person : INotifyPropertyChanged  
    {
        public event PropertyChangedEventHandler PropertyChanged;         private string name;
        public string Name
        {
            get { return name; }
            set
            {
                name = value;
                OnPropertyChanged("Name"); 
            }
        }
        protected void OnPropertyChanged(string name)
        {
            if (PropertyChanged != null)
            {
                PropertyChanged(this, new PropertyChangedEventArgs(name));
            }
        }
    }textbox1、textbox2的Text属性都绑定到一个Person对象,单击button的时候,修改了textbox1的Text属性值,因为Text属性是双向绑定吧,所以绑定源的Name属性值也会变的吧,而Name属性实现了INotifyPropertyChanged接口的,那textbox2也会跟着变的吧
可是,为什么textbox2的Text属性值没有变化呢?