在我的WinForms项目中,我有Form
个DataGridView
。加载应用程序时,DataGridView
将填充数据。在我的DataGridView
中,SelectionMode
设置为FullFowSelect
。
问题1:加载Form
时,我如何才能在DataGridView
中选择没有行?
问题2:在初始加载后,如何编写Button
以突出显示DataGridView
中的特定行(例如,第5行)?
答案 0 :(得分:1)
datagridview.Rows[index].Selected = true;
在你的情况下选择第五行
datagridview.Rows[4].Selected = true;
答案 1 :(得分:1)
我相信你应该为DataGridView
设置 CurrentCell所以对于你的情况,第五行应该是
dataGridView1.CurrentCell = dataGridView1[0, 4];