这是我的代码:
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;}
}
但正如我所说,可以有更多属性。这就是我动态需要的原因。 同时我需要能够遍历创建的属性
答案 0 :(得分:0)
我想说最好的办法是将源XML转换为DataSet或IEnumerable,然后将其绑定到网格中。
答案 1 :(得分:0)
据我所知,您正在尝试将对象集合绑定到数据网格,在此处您不知道对象在编译时的外观。
此博客文章解决了这个问题: http://blog.bodurov.com/How-to-Bind-Silverlight-DataGrid-From-IEnumerable-of-IDictionary/
如果我误解了你的问题,请告诉我。