1

我有一个在两个 WPF 类之间共享的只读依赖项属性。所以我把这个属性设为共享属性。在 XAML 上绑定此属性时,它采用其默认值并且无法更新。但是如果我使用这个属性的主要所有者,它的值可以被更新。

那么你的建议是什么?

public  class A
{
    private static readonly DependencyPropertyKey XPropertyKey =
        DependencyProperty.RegisterReadOnly("X", 
        typeof(Point), typeof(A), 
        new FrameworkPropertyMetadata(new Point(0, 0),  
        FrameworkPropertyMetadataOptions.Inherits | 
        FrameworkPropertyMetadataOptions.AffectsRender));

    public static readonly DependencyProperty XProperty =  
        RelativeMousePointPropertyKey.DependencyProperty;

    public Point X
    {
        get { return (Point)GetValue(XProperty); }
        set { SetValue(XProperty, value); }
    }

    public void SetRelativeMousePoint(Point point)
    {
        SetValue(XPropertyKey, point);
    }
}

public class B
{ 
    //I use this class for binding
    public static readonly DependencyProperty XProperty = 
        A.XProperty.AddOwner(typeof(B));

    public Point X
    {
        get { return (Point)GetValue(X); }
    }
}
4

0 回答 0