【问题标题】:How I can update a datagridview for child Form from another datagridview in a parent Form如何从父窗体中的另一个 datagridview 更新子窗体的 datagridview
【发布时间】:2014-01-18 01:56:29
【问题描述】:

我有 DataGridView(dgHome) 在 parentForm(Home) 中有一些列。 子 Form(bill) 有 DataGridView(dgbill) 。 我需要当我单击 dgHome 中的任何列时,它会将这些列添加到 dgbill。 我希望它很清楚。

    `private void dgMenu_CellContentClick(object sender, DataGridViewCellEventArgs e)

{
        DataTable dt;
        if (e.RowIndex > -1)
        {
            if (k < 4)
            {
                DataGridViewRow rw = this.dgMenu.Rows[e.RowIndex];
                string t = rw.Cells[1].Value.ToString();
                if (k == 1)
                {
                    dt = f.SelectFoodType(t);
                }
                else if (k == 2)
                {
                    dt = a.SelectAdditionType(t);
                }
                else if (k == 3)
                {
                    dt = d.SelectDrinkType(t);
                }
                else
                {
                    MessageBox.Show("select Food, Drink or Addition");
                    return;
                }
                dgMenu.DataSource = null;
                dgMenu.DataSource = dt;
                dgMenu.Columns[0].Visible = dgMenu.Columns[2].Visible = false;
                dgMenu.Columns[1].HeaderText = t;
                dgMenu.Columns[3].HeaderText = "Price";
                k = 100;
            }
            else
            {
                DataGridViewRow rw = this.dgMenu.Rows[e.RowIndex];
                string productname = rw.Cells[1].Value.ToString();
                string price = rw.Cells[3].Value.ToString();
                string input = Microsoft.VisualBasic.Interaction.InputBox("Enter Quantity: ", "Quantity", "1", -1, -1);
                int q;
                bool x = int.TryParse(input, out q);
                if (x)
                {
                    EnBill b = new EnBill(UserId);
                    if (IsFormOpen(typeof(EnBill)))
                    {
                        /* in this space I want to add this columns to another DataGridView in another Form*/
                    }
                }
                else
                {
                    MessageBox.Show("No Input or Valid Input");
                }
            }
        }
    }`

【问题讨论】:

  • 显示你尝试了什么以及你在哪里堆叠?
  • 嗯...向我们展示一些爱...发布一些代码,并说明在哪里或什么对您不起作用。
  • 对不起,我不能发布任何图片,我的代码很复杂
  • 最后我添加了一个代码:D

标签: c# mysql sql database datagridview


【解决方案1】:

您可以使用Row.DataBoundItem 来获取绑定到行的数据。然后可以将此数据设置为子窗体中的 DataGridView。有一个类似的问题已经回答了。

How to filter / selectively copy values from one DataGridView to another DataGridView

添加了工作代码...

public class Customer
{
    string name;
    int age;

    public Customer(string thename, int theage)
    {
        name = thename;
        age = theage;
    }

    public string Name
    {
        get { return name; }
        set { name = value; }
    }

    public int Age
    {
        get { return age; }
        set { age = value; }
    }

}
public class ChildForm : Form
{
    DataGridView dataGridView1 = new DataGridView();
    public ChildForm()
    {
        this.ClientSize = new System.Drawing.Size(284, 262);
        this.Controls.Add(dataGridView1);
        dataGridView1.Dock = DockStyle.Fill;
    }

    public void AddData(List<Customer> theData)
    {
        dataGridView1.AutoGenerateColumns = true;
        dataGridView1.DataSource = theData;
    }
}
public class ParentForm : Form
{
    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
        Application.EnableVisualStyles();
        Application.SetCompatibleTextRenderingDefault(false);
        Application.Run(new ParentForm());
    }


    DataGridView dataGridView1 = new DataGridView();
    Button button1 = new Button();
    ChildForm childForm = new ChildForm();

    public ParentForm()
    {
        this.ClientSize = new System.Drawing.Size(284, 262);
        this.Controls.Add(dataGridView1);
        this.Controls.Add(button1);
        this.Load += new EventHandler(ParentForm_Load);
        button1.Click += new EventHandler(button1_Click);
        button1.Dock = DockStyle.Top;
        button1.Text = "CopyToChild";
        dataGridView1.Dock = DockStyle.Fill;
    }

    void button1_Click(object sender, EventArgs e)
    {
        List<Customer> customers = new List<Customer>();
        foreach (DataGridViewRow row in this.dataGridView1.SelectedRows)
        {
            Customer customer = row.DataBoundItem as Customer;
            if (customer != null)
            {
                customers.Add(customer);
            }
        }
        childForm.AddData(customers);

    }

    private void ParentForm_Load(object sender, EventArgs e)
    {

        System.Collections.ArrayList customers = new System.Collections.ArrayList();

        customers.Add(new Customer("Thor", 120));
        customers.Add(new Customer("Loki", 110));
        dataGridView1.AutoGenerateColumns = true;
        dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
        dataGridView1.DataSource = customers;
        childForm.Show();
    }
}

【讨论】:

  • 我需要如何在父窗体中使用子窗体的DataGridView
  • 在子窗体中公开一个方法,该方法将从父 DataGridView 中获取数据作为参数,并在此方法中填充 DataGridView。我不建议直接访问控件。但是,如果您想访问,请公开 DataGridView 控件。
猜你喜欢
  • 2012-07-14
  • 2015-03-07
  • 1970-01-01
  • 2017-10-23
  • 1970-01-01
  • 2016-12-05
  • 1970-01-01
  • 1970-01-01
相关资源
最近更新 更多