It\'s that simple. How do I get the index of the currently selected Row of a DataGridView? I don\'t want the Row object, I want the in
Row
DataGridView
Use the Index property in your DGV's SelectedRows collection:
int index = yourDGV.SelectedRows[0].Index;