datagridview 单击某个单元格选中一行
的有关信息介绍如下:首先:this.dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;//设置为整行被选中然后,在dataGridView的CellClick事件中提示是否要修改当前行当前单元格的内容:DialogResult result=MessageBox.Show("是否要修改当前行中单元格的内容?","提示信息",MessageBoxButtons.YesNo,MessageBoxIcon.Question); if (this.dataGridView1.SelectedRows.Count > 0) { if (result == DialogResult.Yes) { //修改当前行单元格的内容 } }获取当前行单元格内容:string str = this.dataGridView1.CurrentRow.Cells["列名"].Value;LZ试试吧~~直接用手敲的,没在程序中运行。希望可以帮到你。