2

我有一个带有用于搜索的过滤器的 datagridview。如果我更新数据库然后将 dgv 重置为数据源,我会丢失过滤器。我试过做 ResetBindings 但这没有帮助。如果我关闭表单并重新打开那里的更改,我希望它“实时”发生。任何建议表示赞赏。

我有一个基于 SQL 视图的数据集。在这个数据集中有一个基于这个视图的表。datagridview 绑定到这个表。我有几个控件,包括绑定到 dgv 中的列的文本框和组合框。我有一个用于在网格上搜索的文本框:

private void txtFilterString_TextChanged(object sender, EventArgs e)
{
    ToolStripTextBox tb = (ToolStripTextBox)sender;

    DataView dv = tILEDataSet.vwTILEAdmin.DefaultView;

    vwTILEAdminBindingSource.Filter =
        string.Format(@"PdcProductName LIKE '%{0}%' OR LabelDescription LIKE '%{0}%' OR LabelProductName LIKE '%{0}%'",
        tb.Text.Trim().Replace("'", "''"));

    dataGridView1.Refresh();                
}

通过修改一个或多个绑定控件对 dgv 中的一行进行更改后,我保存更改,这会更新表:

sql.Append(@"UPDATE [dbo].[LabeledProducts]
SET [PdcProductName] = @pdcProd
,[LabelProductName] = @lblProd
,[LabelDescription] = @lblDesc
,[Power] = @pwr
,[Fabrication] = 0
,[UL_File_Number] = ''
,[PrePrintedSerial] = 0
,[ShowOrderOnLabel] = 0
,[PrivateLabelLogoId] = @plid
,[AgencyImageId] = @aid
,[WireDiagConfigId] = @wid
WHERE PdcProductName = '").Append(pdcProductName).Append("'");

using (SqlCommand command = new SqlCommand(sql.ToString(), printConfigTableAdapter.Connection)) 
{
    if (vwTILEAdminTableAdapter.Connection.State != ConnectionState.Open)
        vwTILEAdminTableAdapter.Connection.Open();

    LabeledProductsDataTableAdapter.UpdateCommand = command;
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@pdcProd", txtPdcProdName.Text);
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@lblProd", txtLabeledProd.Text);
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@lblDesc", txtLabelDesc.Text);
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@pwr", txtPower.Text);
    // we need ulfilename and mod
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@plid", LogoId);
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@aid", AgencyId);
    LabeledProductsDataTableAdapter.UpdateCommand.Parameters.AddWithValue("@wid", WireId);
    DataTable dt = new DataTable();

    int rowsAffected = LabeledProductsDataTableAdapter.Update(dt);
    rowsAffected = command.ExecuteNonQuery();

    dataGridView1.Refresh();
    //dataGridView1.DataSource = tILEDataSet.vwTILEAdmin;

    //this.vwTILEAdminBindingSource.ResetBindings(true);

}

如果我取消注释我设置数据源的行,我会得到一个刷新的视图,但是用于在绑定源上生成过滤器的文本框不再起作用,例如,无论我在文本框中键入什么。Text_Changed 事件仍会被调用,但过滤器不再对 dgv 的内容产生任何影响。

4

1 回答 1

2

看起来你的问题很简单。

在这些行中:

dataGridView1.DataSource = tILEDataSet.vwTILEAdmin; 

this.vwTILEAdminBindingSource.ResetBindings(true);

您将网格的数据源设置为 vwTILEAdmin,但在您的过滤器代码中,您正在过滤不再是网格数据源的绑定源!

请尝试:

this.vwTILEAdminBindingSource.DataSource = tILEDataSet.vwTILEAdmin; 

this.vwTILEAdminBindingSource.ResetBindings(true);

此外,您可能不需要.Refresh()网格上的调用 - 该方法实际上并不刷新网格的数据源。它只重绘网格客户区,如果您有一个陈旧的数据源(网格不知道数据已更改),重绘不会有任何影响。

如果您仍然遇到问题,则可能是对网格数据源的更新没有传播 - 这没有引发网ListChanged格监听以了解何时更新的事件。如果是这种情况,那么您需要清空数据源并重置它。

dataGridView1.DataSource = typeof(List<string>); 
dataGridView1.DataSource = newDataSource; 

在上面的代码中,数据源设置为,typeof(List)因为这会保留所有现有列。然后,您将再次将绑定源设置为网格数据源。虽然我怀疑这是否必要 - 绑定源ResetBindings调用应该足够了。

于 2012-05-07T12:44:26.077 回答