如何在button_click上更新datagridview组合框数据源?

时间:2014-08-22 18:15:41

标签: c# ms-access datagridview

我有产品添加表格。 1.此表格包含文本框,2个组合框,标签,按钮和DATAGRID。

  1. Datagrid包含4个文本框和2个组合框。

  2. 数据网格中的2个组合框被限制为数据源1。

  3. 此外,Combobox Outsite数据网格也作为数据网格中的组合框数据绑定到datasource1。

  4. 我使用一个按钮来显示一个表格,以便为数据源1添加值。

  5. 我使用刷新按钮在数据块上重新加载数据网格上的值。

  6. 我的关注只是那个

    单击“刷新”按钮时,我还想在datagrid中重新加载组合框值。 但是,不应重新加载已输入的datagrid中的值。

    注意:所有组合框和数据网格在设计时都有界限。

    以下是步骤。 enter image description here

    enter image description here

    enter image description here enter image description here

    我在按钮Refresh上使用的方法如下。

    private void button6_Click(object sender, EventArgs e)
        {
            loadLabel();    /* load combobox5 with Label*/
            loadShade();    /* load combobox1 with Shade*/
            dataGridView1.Update();
            dataGridView1.Refresh();
        }
    

0 个答案:

没有答案