C# WinForm怎么设置DataGridView选中指定行

avatar
作者
猴君
阅读量:1

要设置DataGridView选中指定行,可以使用DataGridView的SelectedRows属性来实现。以下是一个示例代码:

// 假设dataGridView是一个DataGridView控件  // 选中第一行 dataGridView.Rows[0].Selected = true;  // 或者通过行索引选中指定行 int rowIndex = 3; dataGridView.Rows[rowIndex].Selected = true;  // 或者通过行对象选中指定行 DataGridViewRow row = dataGridView.Rows[rowIndex]; row.Selected = true; 

通过设置Selected属性为true,即可实现选中指定行。

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!