我希望将文本保存在第二种形式的变量中,当我从列表框中选择一个项目时,它会加载第二个表单和相应的文本变量,因此它可以作为任务管理器应用程序使用。
我的第一个表单的名称是form1,我的第二个表单是Description
这是我所拥有的,它不起作用它说我需要Form1中的对象引用:
private void button1_Click(object sender, EventArgs e)
{
Tdo.addItem(textBox1.Text);
this.Hide();
string Dtext;
Dtext = textBox2.Text;
}
这是我的第二个表单代码。 现在这是我的第一个表格:
private void listBox1_SelectedIndexChanged(object sender, EventArgs e)
{
Description.Show();
Description.textBox1.text = Description.Dtext
}
我对编程非常陌生,所以认为我在我的头脑中,所以任何帮助或更好的方法都会受到赞赏谢谢。