GridView1.Rows[0].Cells[0].Text
为什么我无法在网格视图中获取单元格的值。 相反,它给了我“& nbsp”
答案 0 :(得分:0)
您可以尝试代码
string str;
str = DataGridView1.Rows[DataGridView.SelectedRows[0].Index].Cells[X].Value.ToString();
或者
textBox1.Text = dataGridView1.CurrentRow.Cells[X].Value.ToString();