tags:

views:

64

answers:

3

I would like to know how to implement nested DataGridView in Windows Form in C#.

A: 

If you truly mean nested (and not master-detail), you'll need to convert one of the columns of the datagridview to a template column: in that case you can place another datagridview on the template item.

(Not behind my IDE right now: some details may be slightly different).

Tobiasopdenbrouw
A: 

I would suggest that you take a look at the XtraGrid Suite from DevExpress. Our grid provides many features as well as it is able to represent nested grids. Please refer to the product's information page available at:

http://devexpress.com/Products/NET/Controls/WinForms/Grid/

DevExpress Team