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

BoucherS
- 96
- 2