Is there a .NET WinForms grid that supports multiple scrollbars, by dividing the grid up into N parts, horizontal-wise, and having a scrollbar for each part?
Example:
|---- Part 1 ---|---- Part 2 ---|---- Part 3 ---|
| Col 1 | Col 2 | Col 1 | Col 2 | Col 1 | Col 2 |
|<****=========>|<****=========>|<****=========>|
Each of those parts have more columns, 3-6 for instance.
So does anyone know of such a grid? Without having to drop 3 grids on the form and using event handling to synchronize vertical scrolling and row height changes.