I'm storing a bunch of data in nested collections like this:
Dictionary<string, (holds tables)
.....Dictionary<string, (holds columns)
..........Struct{
...............string type (names the type of data in column)
...............List<string> values (values for column)
..........}
.....>
>
Anyway I want to be able to display one of the individual tables (by column, with key of the second level dictionary as the header and values as the values) in a form, and have people select one column at a time and choose to perform various operations on it. I'm new to C# and .Net in general, but I looked around and found the DataGridView form element which seems to be the best choice, but I've had a lot of trouble getting it to work since I'm not connecting to a database. Can somebody recommend either an alternative or a tutorial for how to use DataGridView that's simple and understandable?
Thanks!