DataGridView中的行选择

时间:2011-04-05 08:43:00

标签: winforms

在我的WinForms项目中,我有FormDataGridView。加载应用程序时,DataGridView将填充数据。在我的DataGridView中,SelectionMode设置为FullFowSelect

问题1:加载Form时,我如何才能在DataGridView中选择没有行?

问题2:在初始加载后,如何编写Button以突出显示DataGridView中的特定行(例如,第5行)?

2 个答案:

答案 0 :(得分:1)

datagridview.Rows[index].Selected = true;

在你的情况下选择第五行

datagridview.Rows[4].Selected = true;

答案 1 :(得分:1)

我相信你应该为DataGridView

设置 CurrentCell

所以对于你的情况,第五行应该是

dataGridView1.CurrentCell = dataGridView1[0, 4];