当我单击一个按钮时,我有一个带有 4 个按钮的表格 1,它会打开一个新表格。每个按钮打开相同的表单,但我希望相应的按钮将特定值输入到表单 2 上的两个不同文本框中。
表格 1 按钮 A;表格2textbox1= 400 textbox2 =0.4
表格 1 按钮 B;表格2textbox1= 350 textbox2 =0.9
表格 1 按钮 C;表格2textbox1= 700 textbox2 =0.6
表格 1 按钮 D;表格2textbox1= USER DEFINED
textbox2 = USER DEFINED
我该怎么做
//This is the current text
// Form1:
private void ButtonA_Click(object sender, EventArgs e)
{
Form2 numb = new form2();
numb.FormClosed += new FormClosedEventHandler(numb_FormClosed);
this.Hide();
CalcForm.Show();
}