INotifyPropertyChanged.PropertyChanged always NULL



我知道我在这里做错了什么。请查看并指出我的错误。

点击按钮后,我将在文本框中看到"Peter",但没有"Jack"。

我班上

namespace App
{
    class Person : INotifyPropertyChanged
    {
        private string name;
        public String Name
        {
            get { return name; }
            set { name = value; OnPropertyChanged("Name"); }
        }
    public Person()
    {
        Name = "Peter";
    }
    public void SetName(string newname)
    {
        Name = newname;
    }
    public event PropertyChangedEventHandler PropertyChanged;
    private void OnPropertyChanged(string prop)
    {
        if (PropertyChanged != null)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(prop));
        }
    }
}

}

我XAML

<Window x:Class="test.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:app="clr-namespace:App"
    Title="MainWindow" Height="400" Width="400">
<Grid>
    <Grid.Resources>
        <app:Person x:Key="person"/>
    </Grid.Resources>
    <TextBox  Width="100" Height="26" Text="{Binding Source={StaticResource person}, Path=Name, Mode=TwoWay}" />
    <Button Content="Button" Height="23"  Name="button1" VerticalAlignment="Top" Width="75" Click="button1_Click" />
</Grid>

和我的codebehind

public partial class MainWindow : Window
{
    Person person;
    public MainWindow()
    {
        InitializeComponent();
        person = new Person();       
    }
    private void button1_Click(object sender, RoutedEventArgs e)
    {
        person.SetName("Jack");
    }
}

谢谢。

您有两个Person实例。静态资源

中的PropertyChanged不为空。

这并不是StaticResources的真正用途。删除静态资源,将绑定更改为:

{Binding Path=Name, Mode=TwoWay}

并将其添加到构造函数中:

DataContext = person;

MainWindow的codebehind对象person不是你在XAML中绑定的对象

如果你想从资源中使用那个对象你必须在后面的代码中找到它像这样在构造函数

person = (Person)Resources["person"];

相关内容

  • 没有找到相关文章

最新更新