如何获取消息框中的DataGridView单元格值?
如何在 C# 中的 MessageBox 中写入 DataGridView 单元格值?
How can I get DataGridView cell value to be written in the MessageBox in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(8)
您可以使用 DataGridViewCell.Value用于检索存储在特定单元格中的值的属性。
因此,要检索“第一个”选定单元格的值并显示在 MessageBox 中,您可以:
上面的内容可能并不完全是您需要执行的操作。如果您提供更多详细信息,我们可以提供更好的帮助。
You can use the DataGridViewCell.Value Property to retrieve the value stored in a particular cell.
So to retrieve the value of the 'first' selected Cell and display in a MessageBox, you can:
The above probably isn't exactly what you need to do. If you provide more details we can provide better help.
有点晚了但希望有帮助
a bit late but hope it helps
我将其添加到数据网格的按钮中,以获取用户单击的行中单元格的值:
其中 X 是您要检查的单元格。在我的例子中,Datagrid 列计数从 1 开始,而不是从 0 开始。不确定它是否是数据网格的默认值,还是因为我使用 SQL 来填充信息。
I added this to the Button of a datagrid to get the values of the cells in the row that the user is clicking:
where X is the cell you want to check. Datagrid column count starts at 1 not 0 in my case. Not sure if it is default of a datagrid or because I am using SQL to populate the info.