这个问题是以下问题的后续问题: C# Text don't display on another form after double click an item in listbox
现在我在 form3 的文本框中输入了我的值。在form3中按“确定”后,如何将值传回form1以在listbox10中显示?以下是我的 form3 编码,但它不起作用:
private void button1_Click(object sender, EventArgs e)
{
//This is the coding for "OK" button.
int selectedIndex = listBox10.SelectedIndex;
listBox10.Items.Insert(selectedIndex, textBox1.Text);
}