我开发了一个Windows窗体应用程序,它有一个带复选框的数据网格。如果我按下按钮,那么我想获取所有选中的行并对它们进行一些操作。 问题是当按下按钮时,它无法识别最新的复选框操作。这就像落后一步。
我的代码是:
private void copyToToolStripMenuItem_Click(object sender, EventArgs e)
{
dataGridView1.ClearSelection();
DialogResult result = this.folderBrowserDialog1.ShowDialog();
if (result == DialogResult.OK)
{
string foldername = this.folderBrowserDialog1.SelectedPath;
foreach (DataGridViewRow row in dataGridView1.Rows)
{
if (row.Cells[0].Value != null)
{
if ((bool)row.Cells[0].Value == true)
{
try
{
string[] vars = row.Cells[1].Value.ToString().Split('\\');
System.IO.File.Copy(row.Cells[1].Value.ToString(), foldername + @"\" + vars[vars.Length - 1], true);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
}
}
}
}
数据来自SQL查询 - 通常的东西。
答案 0 :(得分:1)
罗兰,
原因可能是因为数据尚未提交给源。 DataGridView的工作方式是它“绑定”到源并保持数据同步。但是,DataGridView中所做的更改不会立即更新DataGridView。它被认为是'脏'。
尝试在更改后检查原始数据源,您也可以尝试调用BindingContext(..)。EndCurrentEndit();或类似的东西尝试并确保提交数据。