在 winforms 应用程序中使用类型化数据集/绑定源时获取当前行的详细信息
仅当列中存在特定值时,我才想删除网格中的当前行。
如何获取当前行的详细信息?
I want to delete the current row in a grid only if a specific value exists in a column.
How can I get the details for the current row?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
以下代码可以满足您的需求:
希望这会有所帮助。
The following code does what you want:
Hope this helps.
根据您的需要,访问 CurrentRow 的 (DataGridViewRow) 单元格或 DataBoundItem 项。您必须将 DataBoundItem 对象转换为强类型数据行。
Access the CurrentRow's (DataGridViewRow) Cells or DataBoundItem items, depending on your needs. You will have to cast the DataBoundItem object to your strongly-typed data row.