.net - Access the Item bound to a DataGridView Row (WinForms) -
How do I use bound items for a custom line for a datagroup view for a custom collection?
MSDN:
The DataBoundItem property of DataGoundViewRow is a trick!
var product = (product) _grid.SelectedRows [0] .DataBoundItem;
Comments
Post a Comment