Thomas
Thomas

Reputation: 34188

How to show multi level nested data through datagridview in C# Windows application?

alt text

I want to show nth level master detail data through a datagridview & C# in Windows application. Here I attached a picture where the master detail data is shown through grid. So please advice me how I can show data in this tree structure through datagridview in Windows apps with C#.

Upvotes: 0

Views: 5624

Answers (1)

Jonas Pegerfalk
Jonas Pegerfalk

Reputation: 9206

There is an blog article at MSDN that describes how this can be achieved by extending the standard DataGridView.

Upvotes: 1

Related Questions