在 DataGridView 中选择一行
我从数据表填充 DataGridView。 我在 DataGridView 控件中使用 SelectionChanged 事件。
当我将新项目插入数据库并在网格中重新加载数据表时, 它默认选择 datagridview 中的第一行。
如何选择插入到 DataGridView 中的最后一行?
I fill a DataGridView from a datatable.
And I use the selectionchanged event in the DataGridView control.
When I insert a new item into the database and reload datatable in the grid,
it selects the first row in the datagridview by default.
How can I select the last row which was inserted into the DataGridView?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个
Try this
我为你创建了一个虚拟项目。
如果您使用的是 WPF 或 Silverlight,则下面的 XAML 代码。(如果您使用的是 winform,请忽略它,我刚刚向您展示了我在代码中调用的内容的想法)
I've created a dummy project for you.
Then this code below for the XAML If you're using WPF or Silverlight.(Disregard it if you are using winforms I've just showed it for you that an idea on what am i calling in the code)
假设您至少有一列,您尝试设置网格的当前单元格
Assuming you have atleast one column you try setting the currentcell of the grid
你可以这样尝试......
你必须调用 reloaddgv(id)
you can try like this....
you have to call the reloaddgv(id)