回复 12楼roger.wang的帖子
- int fcolindex = fpSpread1.ActiveSheet.ActiveColumnIndex; //获取当前单元格列的index
- int frowindex = fpSpread1.ActiveSheet.ActiveRowIndex; //获取当前单元格的行的index
- this.fpSpread1.ActiveSheet.Cells[frowindex, fcolindex].Value = data_dzgx.CurrentRow.Cells[0].Value;
- this.fpSpread1.ActiveSheet.Cells[frowindex, fcolindex+1].Value = data_dzgx.CurrentRow.Cells[1].Value;
复制代码
版主我也是这样写的,但是得到的结果是这样的,只能当前单元格获取到内容了,右边的单元格,没有获取到dgv中相应的数据。 |