In Xceed's Extended Toolkit PropertyGrid, how do I hide the fully-qualified name of the expandable object? (see screenshot below)
you can override the ToString() method on your expandable object.
public override string ToString()
{
return this.FirstName + " " + this.LastName;
}