dataGridView1的指定单元格离开时触发什么事件,怎么写

时间:2022-10-26 19:25:53
如 有3行3列,我在第2行2列离开时,能读取到2行2列的数据,并且把值赋值到 当前行的3列


怎么写方法,感谢

5 个解决方案

#1


 void dataGridView_CellMouseLeave(object sender, DataGridViewCellEventArgs e)
        {
            if (dataGridView.RowCount >= 2 && dataGridView.ColumnCount >= 2)
            {
                if (dataGridView.CurrentCell.RowIndex == 1 && dataGridView.CurrentCell.ColumnIndex == 1)
                {
                    object cellValue = dataGridView[1, 1].Value;
                    dataGridView[2, dataGridView.CurrentCell.RowIndex].Value = cellValue;
                }
            }
        }

#2


用当前单元格变更时的哪个事件...
dataGridView1_CurrentCellChanged  查看e.rowindex 与dgv1.currentcell.index LZ试下是否可以得到效果

dataGridView_CellMouseLeave 这个事件无法兼顾到键盘操作吧...

#3


引用 1 楼  的回复:
void dataGridView_CellMouseLeave(object sender, DataGridViewCellEventArgs e)
  {
  if (dataGridView.RowCount >= 2 && dataGridView.ColumnCount >= 2)
  {
  if (dataGridView.CurrentCell.RowIn……

CellMouseLeave +1

#5


该回复于2012-04-30 10:01:19被版主删除

#1


 void dataGridView_CellMouseLeave(object sender, DataGridViewCellEventArgs e)
        {
            if (dataGridView.RowCount >= 2 && dataGridView.ColumnCount >= 2)
            {
                if (dataGridView.CurrentCell.RowIndex == 1 && dataGridView.CurrentCell.ColumnIndex == 1)
                {
                    object cellValue = dataGridView[1, 1].Value;
                    dataGridView[2, dataGridView.CurrentCell.RowIndex].Value = cellValue;
                }
            }
        }

#2


用当前单元格变更时的哪个事件...
dataGridView1_CurrentCellChanged  查看e.rowindex 与dgv1.currentcell.index LZ试下是否可以得到效果

dataGridView_CellMouseLeave 这个事件无法兼顾到键盘操作吧...

#3


引用 1 楼  的回复:
void dataGridView_CellMouseLeave(object sender, DataGridViewCellEventArgs e)
  {
  if (dataGridView.RowCount >= 2 && dataGridView.ColumnCount >= 2)
  {
  if (dataGridView.CurrentCell.RowIn……

CellMouseLeave +1

#4


#5


该回复于2012-04-30 10:01:19被版主删除