怎么把form2中listbox中的值传给form3中的textbox上?
下面是我写的form2上和form3上的一段代码,但是运行后在form2上不显示。请各位帮忙看看form2:
int q = 0;
Form3 f3 = new Form3();
foreach (object item in lstbox_hjmd.Items)
{
if (choose == 1)
{
yi[q] = item.ToString();
q++;
}
form3:
Form2 f2 = new Form2();
int y = 0;
if (f2.yi[y] != null)
{
textb_1.Text = textb_1.Text + f2.yi[y] + "\n";
y++;
}