6

在我最近的问题中,我想通过反射检索一些值。现在我想通过反射为对象设置值。

我想写这个:

private void AppliquerColonnesPersonnalisation(Control control, Propriete propriete, PropertyInfo Info)
        {
            UltraGrid grille = (UltraGrid)control;
            SortedList<int,string> sortedOrderedColumns = new SortedList<int,string>();

            if (grille != null)
            {
                // I want to write MapPropertyInfo method 
                ColumnsCollection cols = MapPropertyInfo(Info);

PropertyInfo 包含一种 ColumnsCollection。我只想将我的 PropertyInfo“映射”到一个对象以在之后定义一些属性:例如:

cols[prop.Nom].Hidden = false;

可能吗 ?

此致,

弗洛里安

编辑:我尝试了 GenericTypeTea 解决方案,但我遇到了一些问题。这是我的代码片段:

        private void AppliquerColonnesPersonnalisation(Control control, Propriete propriete, PropertyInfo Info)
    {
        UltraGrid grille = (UltraGrid)control;
        ColumnsCollection c = grille.DisplayLayout.Bands[0].Columns;

                    // Throw a not match System.Reflection.TargetException
        ColumnsCollection test = Info.GetValue(c,null) as ColumnsCollection;
        SortedList<int,string> sortedOrderedColumns = new SortedList<int,string>();

但是抛出了 TargetException

4

1 回答 1

3

所以你已经有了一个PropertyInfo类型的对象ColumnsCollection

您可以使用以下代码获取并修改它:

var original = GetYourObject();
PropertyInfo Info = GetYourPropertyInfo(original);
ColumnsCollection collection = Info.GetValue(original) as ColumnsCollection;

基本上,您只需将原始对象传递回PropertyInfo's GetValue 方法,该方法将返回一个对象。只需将其转换为 the 即可ColumnsCollection,您应该对其进行排序。

更新:

根据您的更新,您应该这样做:

object original = grille.DisplayLayout.Bands[0];
PropertyInfo info = original.GetProperty("Columns");

ColumnsCollection test = info.GetValue(original, null) as ColumnsCollection;

您必须Info PropertyInfo从不同类型的对象中获取您的。虽然我认为我们在这里解决了错误的问题。我不明白你想要达到什么目的。为什么不直接修改grille.DisplayLayout.Bands[0].Columns呢?

于 2010-07-05T13:31:16.610 回答