如何在不在c#中创建表单的新实例的情况下将值从一个表单传递到另一个表单?

时间:2014-03-10 04:32:50

标签: c# winforms

你好我非常清楚通过使用来调用另一种形式是一个非常常见的要求

  Form3 f3 = new Form3();
   f3.ShowDialog();

但我面临的困难是我不想每次都创建一个form3的新实例,我甚至无法创建全局构造函数,因为我传递了一些参数。
我的要求是 form1 textbox 值应该传递给 form3 datagrid
怎么做?
我的 form1代码

    String l=null;
    String m= null;
    Decimal n=0;
    String o=null;
    private void Form1_MouseUp(object sender, MouseEventArgs e)
    {                       
        this.Cursor = Cursors.Default;
        Class1 a = new Class1(mold, mcur, mshape, mwidth, mcolor);
        ds.Add(a);
        int c = (mold.X > mcur.X ? mcur.X : mold.X);
        int b = (mold.Y > mcur.Y ? mcur.Y : mold.Y);
        int w = Math.Abs(mold.X - mcur.X);
        int h = Math.Abs(mold.Y - mcur.Y);
        String line = LayerName.Text + "\t" + Material.Text+ "\t" + w.ToString() + "\t" + h.ToString() + "\t" + c.ToString() + "\t" + b.ToString() + "\t" + numericUpDown1.Value + "\t" + comboBox3.Text + Environment.NewLine;
         l=LayerName.Text;
         m=Material.Text;
         n=numericUpDown1.Value;
         o=comboBox3.Text;
         Form3 f3 = new Form3(l, m, n, o);
         f3.ShowDialog();
        string path = @"C:\Users\pri\Desktop\efg.txt";
        if (!File.Exists(path))
        {
            File.Create(path);
            TextWriter tw = new StreamWriter(path);
            tw.WriteLine(line);
            tsw.Close();
        }
        else if (File.Exists(path))
        {
            TextWriter tw = new StreamWriter(path, true);
            tw.WriteLine(line);
            tw.Close();
        }  
    }

form3:

    public Form3(string myString, string rek, decimal myvalue, string text1)
    {
        InitializeComponent();

        string[] Rows = new string[2];

        for (int i = 0; i < Rows.Length; i++)
        {
            DataGridViewRow Row = new DataGridViewRow();
            Row.CreateCells(dataGridView1);
            if (myString != null)
                dataGridView1.Rows[i].Cells[0].Value = myString;
            if (rek != null)
                dataGridView1.Rows[i].Cells[1].Value = rek;
            if (myvalue != 0)
                dataGridView1.Rows[i].Cells[2].Value = myvalue;
            if (text1 != null)
                dataGridView1.Rows[i].Cells[3].Value = text1;
            // int index = this.dataGridView1.Rows.Count;

            dataGridView1.Rows.Add(Rows);
        }
    }

问题:文本框值每次都在同一行中替换而不在新行中更新。

3 个答案:

答案 0 :(得分:0)

第一种方式:

在表格1中,

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }
    private void button1_Click(object sender, EventArgs e)
    {
        var frm2 = new Form2(dataGridView1.Rows[0].Cells[0].Value.ToString());
        frm2.Show();
    }
}

窗体2

public partial class Form2 : Form
{
    public Form2(string s)
    {
        InitializeComponent();
        textBox1.Text = s;
    }
}
第二种方式:

public event EventHandler<Form2EventArgs> Form2Event;

public class Form2EventArgs : EventArgs
{
   public object Data {get;set;}
}

Event listener in Form1:

private void GetData(object sender, Form2EventArgs args)
{
    object data = args.Data;

}

 calling the event,

   Form2 form2 = new Form2();
   form2.Form2Event += GetData;
   if(Form2Event != null)
   form2Event(this, new Form2EventArgs {Data = data});

答案 1 :(得分:0)

制作一个包含你的属性的类(模具,......),或许像“Class1”这样的东西。 将数据缓存为List in somewhere,因此操作列表并最终将其全部提取到网格中。

答案 2 :(得分:0)

您可以使用静态变量,也可以将其存储在类中。