winforms control for viewing object details
I need to display some sort of detailed information about an object in my custom win form application.
something similar as visual studio uses when deb开发者_C百科ugging. does any of you know something that might help.
I know, I can write something on my own, but I don't intent to.
thanks
You can try the PropertyGrid
control. This is the control you use to configure control properties in the Windows Forms designer.
MSDN Documentation
If you do not want to use the PropertyGrid then you have little choice but to write your own control. There is no standard WinForm control for what you intend. I also have never seen such a control provided by the control vendors either.
To build your own you would need to use a TreeView control but with two columns. The left with a hierarchy of the objects and the right column with object values. I would recommend using a control vendors grid control for this.
精彩评论