I have a class like
public class Entry{
public short value1{get ; set ;}
public short value2{get; set; }
}
This class is nested in a SortedList:
//<snip>
SortedList<DateTime,Entry> myList = new SortedList<DateTime,Entry>();
//</snip>
Now I want to bind this list to a DataGridView. And I want the Keys to be the RowHeaders for the corresponding Rows.
The naive approach doesn't work at all:
BindingSource bind = new BindingSource();
bind.DataSource = myList;
dataGridView1.DataSource = bind;
I guess I have to derive my own class from BindingSource but on the other hand it shouldn't be uncommon to want to caption your rows. I still hope there is a native mechanism for this
Any help is appreciated