I have a base class (Node) and some inherited types.
Class Node
{
Base_Attributes...
}
Class Derived : Node
{
Derived_Attributes...
}
These types are in a dll I've added to my project. And there is a class let's say Item that one of its attributes is Node. I have a Propertygrid in which I display itme's properties like this:
Class Item
{
Point location;
String name;
Node quiddity;
bool[] IsBrowsable;
public Point Location{set;get;}
public String Name{set;get;}
public String NodeAttrib{set;get;}
[Browsable(IsBrowsable[thisindex])]
public String DerivedTypeAttribe{set;get;}
[Browsable(IsBrowsable[otheroneindex])]
public String DerivedTypeAttribe{set;get;}
Item(string type)
{
switch(type)
{
case"some":
Node = new derived_some();
IsBrowsable[thisindex] = true;
break;
}
}
}
and somewhere in mainform:
propertygrid.selectedobject = item;
The problem here is there's some properties specified to derived types and I need to show them in the propetygrid but the type of node is not known till in run-time. I tried to set Browsabl() attribute using an array of booleans but turned out Browsable Parameter needs to be a constant value. Any ideas how could I pass this ?