我目前正在处理我的datagridview,它正在由数据库中的存储过程查询填充。我的问题是,即使我只点击一个单元格,如何选择整行?
示例,存储过程返回了四列。所以基本上datagridview将向我呈现四列数据。如果我选择第3列的第2行,是否可能该操作不仅会突出显示row2第3列而是整行第2行?
非常感谢!
答案 0 :(得分:1)
DataGridView1.FirstDisplayedScrollingRowIndex = DataGridView1.Rows(counter).Index
DataGridView1.Refresh()
DataGridView1.CurrentCell = DataGridView1.Rows(counter).Cells(1)
DataGridView1.Rows(counter).Selected = True
答案 1 :(得分:1)
您可以将datagridview的SelectionMode设置为FullRowSelect
:
dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
答案 2 :(得分:0)
您可以将DataGridView.SelectionMode属性设置为fullrowselect。