0

In Xceed's Extended Toolkit PropertyGrid, how do I hide the fully-qualified name of the expandable object? (see screenshot below)

Screenshot of ExpandableObject example from Xceed documentation

blueshift
  • 831
  • 2
  • 12
  • 24

1 Answers1

1

you can override the ToString() method on your expandable object.

public override string ToString()
{
  return this.FirstName + " " + this.LastName;
}
BoucherS
  • 96
  • 2