C# - 在DataGridView中选择Row

时间:2010-10-17 05:27:05

标签: c# datagridview row

我目前正在处理我的datagridview,它正在由数据库中的存储过程查询填充。我的问题是,即使我只点击一个单元格,如何选择整行?

示例,存储过程返回了四列。所以基本上datagridview将向我呈现四列数据。如果我选择第3列的第2行,是否可能该操作不仅会突出显示row2第3列而是整行第2行?

非常感谢!

3 个答案:

答案 0 :(得分:1)

DataGridView1.FirstDisplayedScrollingRowIndex = DataGridView1.Rows(counter).Index

DataGridView1.Refresh()

DataGridView1.CurrentCell = DataGridView1.Rows(counter).Cells(1)

DataGridView1.Rows(counter).Selected = True

更多:http://social.msdn.microsoft.com/forums/en-US/winformsdatacontrols/thread/47e9c3ef-a8de-48c9-8e0d-4f3fdd34517e/

答案 1 :(得分:1)

您可以将datagridview的SelectionMode设置为FullRowSelect

dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;

答案 2 :(得分:0)

您可以将DataGridView.SelectionMode属性设置为fullrowselect。