Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xceed 的扩展工具包 PropertyGrid 中,如何隐藏可扩展对象的完全限定名称?(见下面的截图)
您可以覆盖可扩展对象上的 ToString() 方法。
public override string ToString() { return this.FirstName + " " + this.LastName; }