int row = dataGridView1.CurrentRow.Index;是什么意思
时间: 2024-06-04 11:10:16 浏览: 137
这段代码用于获取当前 DataGridView 控件中选中行的行索引。具体来说,`dataGridView1.CurrentRow` 属性表示当前选中的行,而 `Index` 属性则表示该行在 DataGridView 中的索引(从 0 开始)。因此,`int row = dataGridView1.CurrentRow.Index;` 就是将当前选中行的索引赋值给变量 `row`。这个代码通常用于处理 DataGridView 中的行操作。
阅读全文