Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很好奇是否有一种方法可以在表单是或dataGridView1之后自动选择第一行?startedloaded
dataGridView1
started
loaded
我是 C# 的初学者,我认为它可以专注于dataGridView1第一行?
非常感谢您的帮助!
在您的表单加载中,如果您已经初始化datagridview(向其中添加数据),请放置:
datagridview
dataGridView1.Rows[yourindex].Selected = true;
请记住,如果您放置例如 3 行,则最多可以放置 2 个索引。在您的情况下(您想要第一行),索引将为 0。
编辑:
设置选择箭头:
dataGridView1.CurrentCell = dataGridView1.Rows[0].Cells[0];