4

我正在使用 PropertyDescriptor 和 ICustomTypeDescriptor(仍然)尝试将 WPF DataGrid 绑定到一个对象,该对象的数据存储在字典中。

因为如果您向 WPF DataGrid 传递一个 Dictionary 对象列表,它将根据字典的公共属性(Comparer、Count、Keys 和 Values)自动生成列,因此我的 Person 是 Dictionary 的子类并实现 ICustomTypeDescriptor。

ICustomTypeDescriptor 定义了一个返回 PropertyDescriptorCollection 的 GetProperties 方法。

PropertyDescriptor 是抽象的,因此您必须对其进行子类化,我想我应该有一个构造函数,它采用 Func 和一个 Action 参数来委托获取和设置字典中的值。

然后我为字典中的每个键创建一个 PersonPropertyDescriptor,如下所示:

            foreach (string s in this.Keys)
            {
                var descriptor = new PersonPropertyDescriptor(
                        s,
                        new Func<object>(() => { return this[s]; }),
                        new Action<object>(o => { this[s] = o; }));
                propList.Add(descriptor);
            }

问题是每个属性都有自己的 Func 和 Action 但它们都共享外部变量s所以尽管 DataGrid 为“ID”、“FirstName”、“LastName”、“Age”、“Gender”自动生成列,但它们都得到并且针对“性别”设置,这是foreach 循环中s的最终静止值。

如何确保每个委托都使用所需的字典键,即实例化 Func/Action 时 s 的值?

非常感谢。


这是我剩下的想法,我只是在这里试验这些不是“真正的”课程......

// DataGrid binds to a People instance
public class People : List<Person>
{
    public People()
    {
        this.Add(new Person());
    }
}

public class Person : Dictionary<string, object>, ICustomTypeDescriptor
{
    private static PropertyDescriptorCollection descriptors;

    public Person()
    {
        this["ID"] = "201203";
        this["FirstName"] = "Bud";
        this["LastName"] = "Tree";
        this["Age"] = 99;
        this["Gender"] = "M";        
    }        

    //... other ICustomTypeDescriptor members...

    public PropertyDescriptorCollection GetProperties()
    {
        if (descriptors == null)
        {
            var propList = new List<PropertyDescriptor>();

            foreach (string s in this.Keys)
            {
                var descriptor = new PersonPropertyDescriptor(
                        s,
                        new Func<object>(() => { return this[s]; }),
                        new Action<object>(o => { this[s] = o; }));
                propList.Add(descriptor);
            }

            descriptors = new PropertyDescriptorCollection(propList.ToArray());
        }

        return descriptors;
    }

    //... other other ICustomTypeDescriptor members...

}

public class PersonPropertyDescriptor : PropertyDescriptor
{
    private Func<object> getFunc;
    private Action<object> setAction;

    public PersonPropertyDescriptor(string name, Func<object> getFunc, Action<object> setAction)
        : base(name, null)
    {
        this.getFunc = getFunc;
        this.setAction = setAction;
    }

    // other ... PropertyDescriptor members...

    public override object GetValue(object component)
    {
        return getFunc();
    }

    public override void SetValue(object component, object value)
    {
        setAction(value);
    }
}
4

4 回答 4

7

简单地:

        foreach (string s in this.Keys)
        {
            string copy = s;
            var descriptor = new PersonPropertyDescriptor(
                    copy,
                    new Func<object>(() => { return this[copy]; }),
                    new Action<object>(o => { this[copy] = o; }));
            propList.Add(descriptor);
        }

对于捕获的变量,重要的是声明它的位置。因此,通过在循环内声明捕获的变量,每次迭代都会获得一个不同的捕获类实例(循环变量 ,s在技术上是在循环声明的)。

于 2010-04-26T22:30:51.937 回答
3

Marc 的解决方案当然是正确的,但我想我会在下面扩展 WHY。for我们大多数人都知道,如果你在or语句中声明一个变量foreach,它的寿命与里面的内容一样长,这使得该变量看起来与在此类语句的语句块中声明的变量相同,但是那是不对的。

为了更好地理解它,请使用以下 for 循环。然后,我将以 while 形式重新声明“等效”循环。

for(int i = 0; i < list.Length; i++)
{
    string val;
    list[i] = list[i]++;
    val = list[i].ToString();
    Console.WriteLine(val);
}

这适用于如下形式的while形式:(它不完全相同,因为continue会采取不同的行动,但对于范围规则,它是相同的)

{
    int i = 0;
    while(i < list.Length)
    {
        {
            string val;
            list[i] = list[i]++;
            val = list[i].ToString();
            Console.WriteLine(val);
        }
        i++;
    }
}

当以这种方式“爆炸”出来时,变量的范围变得更加清晰,您可以看到为什么它总是在您的程序中捕获相同的“s”值,以及为什么 Marc 的解决方案显示了放置变量的位置以便唯一的变量是每次都被捕获。

于 2010-04-26T22:45:04.490 回答
2

s在循环内部创建一个本地副本for并使用它。

for(string s in this.Keys) {
string key = s;
//...
}
于 2010-04-26T22:33:41.073 回答
2

有关此问题的一些其他想法,请参见

http://ericlippert.com/2009/11/12/closure-over-the-loop-variable-considered-harmful-part-one/

于 2010-04-26T23:29:44.020 回答