我有一個表格中WPF與2文本框:WPF綁定:對象在對象
<TextBox Name="txtName" Text="{Binding Contact.Name}"/>
<TextBox Name="txtAddressNumber" Text="{Binding Contact.Address.Number}"/>
和我有2類:
public class ContactEntity
{
public string Name {get;set;}
public AddressEntity Address {get;set;}
}
public class AddressEntity
{
public int Number {get;set}
}
Name屬性結合細。但Contact對象內的Address對象的Number屬性不綁定。我做錯了什麼?
我在我的ContactEntity中缺少INotifyPropertyChanged。它在我的ViewModel中,但不在我的實體中。非常感謝 ! – 2011-02-04 15:49:49