有没有办法使用PropertyPath类获取对象的属性值?

时间:2009-05-18 11:01:41

标签: c# .net wpf

我想获取对象的嵌套属性的值(类似于Person.FullName.FirstName)。我在.Net中看到了一个名为PropertyPath的类,WPF在Binding中使用了类。 有没有办法重用WPF的机制,或者我应该自己编写一个机制。

2 个答案:

答案 0 :(得分:13)

重用PropertyPath很有吸引力,因为它支持在指出和索引时遍历嵌套属性。你可以自己编写类似的功能,我过去常常使用它,但它涉及半复杂的文本解析和大量的反射工作。

正如Andrew指出的那样,你可以简单地从WPF重用PropertyPath。我假设您只想针对您拥有的对象评估该路径,在这种情况下代码有点涉及。要评估PropertyPath,必须在针对DependencyObject的绑定中使用它。为了证明这一点,我刚刚创建了一个名为BindingEvaluator的简单DependencyObject,它有一个DependencyProperty。然后通过调用应用绑定的BindingOperations.SetBinding来实现真正的魔法,这样我们就可以读取评估值。

var path = new PropertyPath("FullName.FirstName");

var binding = new Binding();
binding.Source = new Person { FullName = new FullName { FirstName = "David"}}; // Just an example object similar to your question
binding.Path = path;
binding.Mode = BindingMode.TwoWay;

var evaluator = new BindingEvaluator();
BindingOperations.SetBinding(evaluator, BindingEvaluator.TargetProperty, binding);
var value = evaluator.Target;
// value will now be set to "David"


public class BindingEvaluator : DependencyObject
{
    public static readonly DependencyProperty TargetProperty =
        DependencyProperty.Register(
            "Target", 
            typeof (object), 
            typeof (BindingEvaluator));

    public object Target
    {
        get { return GetValue(TargetProperty); }
        set { SetValue(TargetProperty, value); }
    }
}

如果您想扩展它,可以连接PropertyChanged事件以支持读取更改的值。我希望这有帮助!

答案 1 :(得分:0)

我认为没有理由不重复使用它。

请参阅PropertyPath

  

实现数据结构   将属性描述为下面的路径   另一个财产,或低于拥有权   类型。属性路径用于数据   绑定到对象和故事板   和动画的时间表。