- private void toolStripButton8_Click(object sender, EventArgs e)
- {
- fpSpread1.StopCellEditing();
- // 添加一下代码
- for (int intRowPos = 0; intRowPos < table.Rows.Count; intRowPos++)
- {
- table.Rows[intRowPos].EndEdit();
- }
- DataTable saveTable = table.Copy();
- dataGridView1.DataSource = saveTable;
- dataGridView2.DataSource = table;
- //
- //处于编辑模式下进行保存,复制完后两张表中的数据为什么不一样。
- //
- //
- }
复制代码 |