回答編集履歴
1
From_Editの引数を textbox1.Text に変更しました。
answer
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
|
10
10
|
private void button_Edit_Click(object sender, EventArgs e)
|
11
11
|
{
|
12
|
-
using (Form_Edit editForm = new Form_Edit(
|
12
|
+
using (Form_Edit editForm = new Form_Edit(textbox1.Text))
|
13
13
|
{
|
14
14
|
editForm.ShowDialog(this);
|
15
15
|
textbox1.Text = editForm.InputText;
|