Hi,
I have a object called ObjNodeProperties that is defined as follow
I have a object called ObjNodeProperties that is defined as follow
public struct ObjNodeProperty
{
private string _PropertyName;
private string _PropertyType;
private string _PropertyValue;
private List<ObjNodeProperty> _InternalValues;
}
I am trying to bind a List<ObjNodeProperty> but what I want that for each _internalValues and even within each _internalValues it should create a childe template. There is no restriction on how many level deep a particular ObjNodeProperty object could be. Also on the grid I only want two columns of _PropertyName and _PropertyValue. How do I restrict the binding to only those two column.
Thanks for the help