datagridview 单击某个单元格选中一行
3个回答
展开全部
首先:
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试试吧~~直接用手敲的,没在程序中运行。希望可以帮到你。
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试试吧~~直接用手敲的,没在程序中运行。希望可以帮到你。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询