0

我有 2 个 Windows 窗体。

首先,主窗口窗体具有多行文本框和一个按钮。该按钮打开第二种形式,我可以在其中使用 AddEntry 对象将数据添加到数组中。

在第二种形式中,我有文本框和一个按钮(btnAddEntry),它应该从第一种形式更新文本框的内容。

输入数据时,我想在第一个表单的文本框中显示数据。

问题是我想出的代码似乎不起作用。

我将如何解决这个问题?

4

1 回答 1

0

In Visual C# it can be done as follows:

In your secondForm, put the below given lines.

private firstForm form_obj;
private void form2_Button_Click()
{
    textBox1.Text = form_obj.textBox1.Text;
}

That means, create an object of the form from which you want the values to be grabbed. Then take the value using that object and id of the form field. :)

于 2013-01-22T08:06:55.157 回答