WPF 自定义控件:DependencyProperty 从未设置(仅在许多属性中的一个上)

WPF Custom Control: DependencyProperty never Set (on only 1 of many properties)

我制作了一个名为 AddressForm 的自定义控件,它继承自 Control。该控件用于显示 IAddress 对象的字段。

最初我在 Silverlight 中制作了这个控件,现在我试图让它在 WPF .net 4.5 中工作

该控件定义了 9 个不同的依赖属性,除一个外,其他属性均正常工作。自然,不起作用的是 Address 对象本身!

控件的地址属性从不接收值。我在地址Getter中放置了一个断点,属性是被调用,地址对象不为空,但控件没有收到它。

输出屏幕中没有异常,也没有错误消息。

对照:

public class AddressForm : Control, INotifyPropertyChanged
{
    [...]

    public static readonly DependencyProperty AddressProperty = DependencyProperty.Register("Address", typeof(IAddress), typeof(AddressForm), new PropertyMetadata( AddressChanged));
    public IAddress Address 
    {
        get { return (IAddress)GetValue(AddressProperty); }
        set { SetValue(AddressProperty, value); } 
    }

    private static void AddressChanged(DependencyObject d, DependencyPropertyChangedEventArgs e)
    {
        //break-point here never gets hit
        AddressForm form = d as AddressForm;
        if (form != null)
            form.OnAddressSet();
    }

    private void OnAddressSet()
    {
        //break-point here never gets hit
        if (StateProvince != null && Address != null)
        SelectedStateProvince = StateProvince.Where(A => A.StateProvince == Address.StateProvince).FirstOrDefault();
    }

    [...]
}

(其他 DependencyProperties 以相同方式设置并正常工作。)

xaml :

<Address:AddressForm Address="{Binding SelectedMFG.dms_Address, Mode=TwoWay}" ... />

SelectedMFG 的类型是 scm_MFG

数据对象:

public partial class scm_MFG 
{
    [...]
    public virtual dms_Address dms_Address { get; set; } //break-point here never enables? Generated code from Entity TT

    //Another attempt, trying to determine if the IAddress cast was the cause of the issue
    //Address="{Binding SelectedMFG.OtherAddress}" 
    public IAddress OtherAddress 
    {
        get { 
            return dms_Address as IAddress; //break-point here gets hit. dms_Address is not null. Control never receives the value.
        } 
    }
}

public partial class dms_Address : IAddress, INotifyPropertyChanged { ... }

我的尝试:

我试过访问 dms_Address 属性 不同的方式。我可以在文本框中显示地址的值,这告诉我数据上下文没有问题。

<TextBox  Text="{Binding SelectedMFG.dms_Address.StreetName, Mode=TwoWay}" /> <!-- this value displays -->

我也试过更改依赖项 属性 的注册元数据。 我不确定使用哪个是正确的:PropertyMetadata、UIPropertyMetadataFrameworkPropertyMetadata

DependencyProperty.Register("Address", typeof(IAddress), typeof(AddressForm), new PropertyMetadata(AddressChanged));
DependencyProperty.Register("Address", typeof(IAddress), typeof(AddressForm), new PropertyMetadata(null, AddressChanged));
DependencyProperty.Register("Address", typeof(IAddress), typeof(AddressForm), new UIPropertyMetadata(AddressChanged));
DependencyProperty.Register("Address", typeof(IAddress), typeof(AddressForm), new FrameworkPropertyMetadata(null, FrameworkPropertyMetadataOptions.Inherits, AddressChanged));
// and other FrameworkPropertyMetadataOptions, no difference

.

相信我已经正确地完成了所有事情并且这个应该工作。

有什么奇怪或不正确的地方吗?

我找到了解决办法。

我将表单上的地址依赖关系 属性 从 IAddress 更改为 Object。现在 属性 正在设置。似乎即使我返回一个 IAddress 对象,表单实际接收的对象是 EntityWrapper for dms_Address。

这个实体包装器也会转换为 IAddress,所以我不确定它为什么会这样。我猜只是另一个实体问题。