How would I access the bound item for a specific row for a DataGridView bound to a Custom Collection?
+1
A:
MSDN: DataGridViewRow DataBoundItem Property
The DataBoundItem property of the DataGridViewRow seems to do the trick!
var product = (Product) _grid.SelectedRows[0].DataBoundItem;
Dog Ears
2009-07-25 15:15:40