Hi,
We have to bind a grid with data source with a list of objects. in object we have couple of scalar properties, and a list of other object with N Items in it. In simple we want to bind columns with index of propert like Item.D[i]. our data structure is Like following
public
class class1
{
public string A { get; set; }
public double B { get; set; }
public int C { get; set; }
public List<class2> D { get; set; }
}
class class2
public string Title { get; set; }
public double Value { get; set; }
Can you help us how can we bind List<class1> with XamGrid and it may show N Items of Class2 as columns. while we may have same number of items in each sub list on specific time.
thanks
Hi Konstantin Koynov,
Thanks for assistance, I had really missed this feature.
Thanks
Hi Imran Javed Zia,
if I understood you correctly you need to use the "String Indexer Support".
Hope this helps,