Hi, think twice,
Based on my understanding, you want to find a multi-column PropertyGrid, don't you?
As far as I know, the standard PropertyGrid doesn't have such capability.
And it could be rather difficult to change the column number of aPropertyGrid byinheriting it.
As a matter of fact, the table in PropertyGrid is a PropertyGridView which is in
Code Block
System. Windows. Forms. PropertyGridInternal. PropertyGridView
And it is a internal class
Code Block
internal class PropertyGridView : Control, IWin32Window, IWindowsFormsEditorService, IServiceProvider
So, I think there would belittle chance that you can change the column number in an easy way.
Hope this helps,
Regards