不要使用 dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value.toString();
因为object为空时用.toString()会出错
可以使用Convert.ToString(dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value)来转换!
不要使用 dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value.toString();
因为object为空时用.toString()会出错
可以使用Convert.ToString(dataGridViewX1.Rows[e.RowIndex].Cells["txt"].Value)来转换!