如何使我的代码选择他们点击的数据网格视图中的行而不是将其硬编码到代码本身中,我想选择用户在表单上用鼠标选择的每一行。
答案 0 :(得分:2)
你必须为你的DataGridView设置multiselect为true,你的dataGridView.SelectionMode应该是FullRowSelect
示例:
dataGridView.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
dataGridView.MultiSelect = true;
然后您可以使用
获取所选行Dim selectedItems As DataGridViewSelectedRowCollection = dataGridView.SelectedRows
For Each selectedItem As DataGridViewRow In selectedItems
'Add code to handle whatever you want for each row
Next
End Sub