【问题标题】:how can i create a dynamic class in c#(silverlight) where i can loop through properties我如何在 c#(silverlight) 中创建一个动态类,我可以在其中循环属性
【发布时间】:2012-03-01 22:26:49
【问题描述】:

这是我的代码:

ObservableCollection<object> ll = new ObservableCollection<object>();

public MainPage(){ 

InitializeComponent();

 ll= createobj(x2);

        dataGrid2.ItemsSource = ll;

这是创建我的属性的函数。 我怎样才能让它们公开?

 private PropertyInfo papa(string propertyName, TypeBuilder tb, Type tt){ 


 private PropertyInfo papa(string propertyName, TypeBuilder tb, Type tt){   
 FieldBuilder ff = tb.DefineField("_" + propertyName, tt, FieldAttributes.Public);
PropertyBuilder pp =
            tb.DefineProperty(propertyName,
                             PropertyAttributes.None ,
                             tt,
                             new Type[] {tt });


        MethodBuilder mget =
           tb.DefineMethod("get_value",
                                        MethodAttributes.Public,
                                      tt,
                                       Type.EmptyTypes);

        ILGenerator currGetIL = mget.GetILGenerator();
        currGetIL.Emit(OpCodes.Ldarg_0);
        currGetIL.Emit(OpCodes.Ldfld, ff);
        currGetIL.Emit(OpCodes.Ret);


        MethodBuilder mset =
            tb.DefineMethod("set_value",
                                       MethodAttributes.Public,
                                       null,
                                       new Type[] { tt });


        ILGenerator currSetIL = mset.GetILGenerator();
        currSetIL.Emit(OpCodes.Ldarg_0);
        currSetIL.Emit(OpCodes.Ldarg_1);
        currSetIL.Emit(OpCodes.Stfld, ff);
        currSetIL.Emit(OpCodes.Ret);


        pp.SetGetMethod(mget);
        pp.SetSetMethod(mset);
        return pp;
    }

这是创建我的对象的函数

 private ObservableCollection<object> createobj(XDocument xx){

        AssemblyName assemblyName = new AssemblyName();
        assemblyName.Name = "tmpAssembly";
        AssemblyBuilder assemblyBuilder = Thread.GetDomain().DefineDynamicAssembly(assemblyName, AssemblyBuilderAccess.Run);
        ModuleBuilder module = assemblyBuilder.DefineDynamicModule("tmpModule");


        TypeBuilder tb = module.DefineType("SilverlightApplication20.blabla", TypeAttributes.Public | TypeAttributes.Class);
        int[] exista={0,0};
        PropertyInfo pp;

        foreach (XElement node in xx.Root.Descendants())
        {
            foreach (XAttribute xa in node.Attributes())
            {
                if (xa.Name.ToString() != "rind" && xa.Name.ToString() != "col")
                    pp = papa(xa.Name.ToString(), tb, typeof(string));
                else
                  pp = papa(xa.Name.ToString(), tb, typeof(int));

            }
        }

        pp=papa("nume",tb,typeof(string));
        pp = papa("parinte", tb, typeof(string));
        Type gg = tb.CreateType();

        ObservableCollection<object> collection = new ObservableCollection<object>();

        PropertyInfo[] pps = gg.GetProperties( );

        foreach (XElement node in xx.Root.Descendants())
        {
            object obiect = Activator.CreateInstance(gg);
            foreach (PropertyInfo property in pps)
            {  if (property.Name == "nume" )
                    property.SetValue(obiect, node.Name.ToString(),null);
            if (property.Name == "parinte")
                property.SetValue(obiect, node.Parent.Name.ToString(), null);
            } 
            foreach (XAttribute xa in node.Attributes())
            {
                  string value="";
                 int value2=0;
                { if(xa.Name.ToString()!="rind" && xa.Name.ToString()!="col")
                  value = xa.Value;
                else
                   value2 = int.Parse( xa.Value);

                    foreach (PropertyInfo property in pps)
                    {
                        if (property.Name == xa.Name.ToString())
                        {
                            if(xa.Name.ToString()=="rind" || xa.Name.ToString()=="col")
                                property.SetValue(obiect, value2, null);
                            else
                            property.SetValue(obiect, value, null);
                            break;
                        }
                    }
                }

            } collection.Add(obiect);
        }
        return collection;

    }

问题是我无法遍历属性。

我想创建这样的东西:

  public class blabla
  {
  public int property1{get;set;}
  public int property2{get;set;}

  }

并且能够做这样的事情

   object1.property=1;

这就是我需要的: 我有一个看起来像这样的 xml 字符串:

                     <xml>
                    <col1 label="label1" r="1" c="1"/>
                    <col2 label="label2" r="2" c="1"/>
                    <col3 label="label2" r="2" c="2"/>

                                             < /xml>

我想将它绑定到数据网格。 问题是我不知道我在运行时会有多少属性。

对于上面的例子,我可以创建一个这样的类:

  public class blabla
  {
  public string labe{get;set;}
  public int r{get;set;}
  public int c{get;set;}
   }

但正如我所说,可以有更多的属性。这就是为什么我需要动态的东西。 同时我需要能够遍历创建的属性

【问题讨论】:

  • 为什么要使用objects 而不是你的blabla 类?你想做什么??
  • 一个动态类。我有一个字符串 xml,我想用这些属性创建一个动态类(xml 中的属性)
  • 这看起来确实是一个糟糕的方法。您应该编辑您的答案并为我们提供更多有关您需求的背景信息,我相信我们将能够为您提供更合理的方式。
  • 您希望从中获得什么而不是使用字典或扩展(动态)对象?
  • 我无法使用字典,因为我无法将它绑定到数据网格

标签: c# silverlight reflection loops properties


【解决方案1】:

据我所知,您正在尝试将对象集合绑定到数据网格,而您不知道该对象在编译时会是什么样子。

这篇博文解决了这个问题: http://blog.bodurov.com/How-to-Bind-Silverlight-DataGrid-From-IEnumerable-of-IDictionary/

如果我误解了你的问题,请告诉我。

【讨论】:

    【解决方案2】:

    我会说最好的办法是将源 XML 转换为 DataSet 或 IEnumerable,然后将其绑定到您的网格。

    【讨论】:

      猜你喜欢
      • 2011-09-19
      • 1970-01-01
      • 1970-01-01
      • 2010-10-15
      • 2010-10-31
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多