我有两个类(表单),我希望在单击“接受”按钮时class2
添加一个项目。listBox
class1
我尝试使用以下代码,但列表框中没有任何变化:
private void button1_Click(object sender, EventArgs e)
{
CarRental i = new CarRental();
string id = idRental.Text.ToString();
i.listBox1.Items.Add(id);
i.listBox1.Update();
this.Close();
}
我在哪里犯了错误?