Hi,
I'm trying to bind a list of simple types (UInt32, double etc.) to a datagridview. I'm using the following simple code:
dataGridView1.DataSource = vectors[0];
vectors is an array of List<UInt32>. Unfortunately, the datagridview appears to be empty though the DataSource property correctly references a list of values.
I've experimented with AutoGenerateColumns and tried to insert columns manually, but the grid insists of not displaying any data.
In all the examples I've seen, the bound data always had a "property name" to reference, but this is not the case here.
Any ideas?
Thanks,
Ury