gpt4 book ai didi

WPF 绑定(bind) : Object in a object

转载 作者:行者123 更新时间:2023-12-01 11:06:45 26 4
gpt4 key购买 nike

我在 WPF 中有一个带有 2 个文本框的表单:

<TextBox Name="txtName" Text="{Binding Contact.Name}"/>
<TextBox Name="txtAddressNumber" Text="{Binding Contact.Address.Number}"/>

我有 2 个类(class):

public class ContactEntity
{
public string Name {get;set;}
public AddressEntity Address {get;set;}
}

public class AddressEntity
{
public int Number {get;set}
}

Name 属性绑定(bind)良好。但是 Contact 对象中 Address 对象的 Number 属性不绑定(bind)。我做错了什么?

最佳答案

您可能没有在类中实现 INotifyPropertyChanged,并且可能在绑定(bind)后分配值。如果你尝试 Snoop http://snoopwpf.codeplex.com/您可以找出确切的问题。

关于WPF 绑定(bind) : Object in a object,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4899409/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com