3

我有这个特殊的问题。我所拥有的只是我的 XAML 中的一个文本框,绑定到一个Person类。当我iNotifyPropertyChangedPerson课堂上实现时,Visual Studio XAML 设计器崩溃,如果我只是运行项目,我会得到StackOverflow异常。

当我删除iNotifyPropertyChanged一切正常并且文本框被绑定到 Person 类中的 FirstName 字段时。

这是我的 XAML,没什么花哨的,只是一个数据绑定文本框

<Window x:Class="DataBinding_WithClass.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525"
        xmlns:c="clr-namespace:DataBinding_WithClass">
    <Grid x:Name="myGrid" >
        <Grid.Resources>
            <c:Person x:Key="MyPerson" />            
        </Grid.Resources>
        <Grid.DataContext>
            <Binding Source="{StaticResource MyPerson}"/>
        </Grid.DataContext>
        <TextBox Text="{Binding FirstName}" Width="150px"/>

    </Grid>
</Window>

这是我的 Person 类,在同一个项目中:

public class Person: INotifyPropertyChanged
    {

        public string FirstName
        {
            get
            { return FirstName; }
            set
            {
                FirstName = value;
                OnPropertyChanged("FirstName");
            }
        }            
       public event PropertyChangedEventHandler PropertyChanged;

        // Create the OnPropertyChanged method to raise the event 
        protected void OnPropertyChanged(string name)
        {
            PropertyChangedEventHandler handler = PropertyChanged;
            if (handler != null)
            {
                handler(this, new PropertyChangedEventArgs(name));
            }
        }  

    }

我努力了

重启 Visual Studio 2012(在 windows 7 Home Premium 64Bit 上运行)

开始一个新的空白项目 - 同样的问题

太奇怪了,没有 iNotifyPropertyChanged 一切都很好,但是当我的 * Person *class 中的FirstName更改时,我的文本框不会得到更新......

你遇到过这个问题吗?

4

1 回答 1

6

你不正确地实现了这个类。您需要一个支持字段:

private string firstName;
public string FirstName
{
     get { return this.firstName; }
     set
     {
         if(this.firstName != value)
         {
            this.firstName = value; // Set field
            OnPropertyChanged("FirstName");
         }
     }
}

现在,您的 getter 正在获取自己,而 setter 自己设置属性,这两者都会导致StackOverflowException.

于 2013-07-05T20:23:36.017 回答