gpt4 book ai didi

c# - 如何获取 DataGridView 中所有选定单元格的值?

转载 作者:太空狗 更新时间:2023-10-29 22:07:43 25 4
gpt4 key购买 nike

我有一个 MultiSelect = true 的 DataGridView。用户从不同行中选择不同的单元格后,如何获取所有选定单元格的值?

最佳答案

您可以遍历 SelectedCells .

foreach (DataGridViewCell cell in dataGridView1.SelectedCells)
{
MessageBox.Show(cell.Value.ToString());
}

您只询问了值,但您可能还想知道单元格的行和列,否则该值可能毫无意义。您也可以在单元格对象上访问它们。

关于c# - 如何获取 DataGridView 中所有选定单元格的值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1978412/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com