问题描述
这个情况怎么处理啊是不是调用这边有问题?privatevoidbutton2_Click(objectsender,EventArgse){DataToExcel(dataGridView1);}
解决方案
本帖最后由 amoypower 于 2016-06-01 14:54:44 编辑
解决方案二:
可能dgv[i,j].Value为null了。
解决方案三:
privatevoiddataGridView1_RowPostPaint(objectsender,DataGridViewRowPostPaintEventArgse){SolidBrushb=newSolidBrush(this.dataGridView1.RowHeadersDefaultCellStyle.ForeColor);e.Graphics.DrawString((e.RowIndex+1).ToString(System.Globalization.CultureInfo.CurrentUICulture),this.dataGridView1.DefaultCellStyle.Font,b,e.RowBounds.Location.X+20,e.RowBounds.Location.Y+4);}加了序号了,还是这个情况啊
时间: 2024-11-30 15:00:57