对于绑定到自定义集合的DataGridView,如何访问特定行的绑定项?
MSDN: DataGridViewRow DataBoundItem Property
var product = (Product) _grid.SelectedRows[0].DataBoundItem;