1

首先我应该说我看到了这个链接:

关闭子窗体时如何刷新datagridview?

我确实喜欢这样:(我在 Form1 中有 datagridview) Form1:

                public void FillDataGridView(DataTable dt1)
            {
                    bindingSource1.DataSource = dt1;
                    bindingSource1.ResetBindings(false);
                    dataGridView1.DataSource = bindingSource1;
                    //here i checked number of rows of dt1 and it shows the correct value
            }

表格2:

           SqlConnection cnn = new SqlConnection(@"My connection string");
            private Form1 Handled_frm1;
            public Form2(Form1 frm1)
            {
                    InitializeComponent();

                Handled_frm1 = frm1;
            }

               private void textbox1_TextChanged(object sender, EventArgs e)
                     {
                        dt.Clear();
                        using (SqlCommand cmd =cnn.CreateCommand())
                        {
                            if (cnn.State == ConnectionState.Closed)
                            {
                                cnn.Open();
                            }
                            cmd.CommandType = CommandType.StoredProcedure;
                            cmd.Connection = cnn;
                            cmd.CommandText = "spSearchCustomerByName";
                            SqlParameter inparam1 = cmd.Parameters.AddWithValue("@name", textbox1.Text);
                            inparam1.Direction = ParameterDirection.Input;
                            dap.SelectCommand = cmd;
                            dap.Fill(dt);

                            Handled_frm1.FillDataGridView(dt);
                        }

但是 Datagridview 的值并没有改变!

编辑:

我想测试是否可以清除数据网格视图,所以我像这样更改了 FillDataGridView:

                public void FillDataGridView(DataTable dt1)
            {
                    dt.Clear();
                    dataGridView1.Columns.Clear();
                    dataGridView1.DataSource = null;
                    dataGridView1.Refresh();
            }

但它并没有清除datagridview1!!!

4

2 回答 2

2

我错误地使用了不正确的 Form1 实例!!

在form1中,有一个按钮,当点击它时,它会显示form2。我在它的点击事件中写了这段代码:

Form1 frm1=new Form1();
Form2 frm2=new Form2(frm1);

这是不正确的,因为我制作了 Form1 的其他实例。

我像这样更改代码:

Form2 frm2=new Form2(this);
于 2012-06-04T23:15:53.413 回答
1

尝试使用 BindingSource,如以下链接中所述:

http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.datasource

我认为直接设置 DataSource 不会导致 DataGridView 重新绑定,而 BindingSource 会处理这个问题。

于 2012-06-04T20:39:00.307 回答