Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Form1 と Form2 があり、button1_ClickForm1 にイベントがある場合、次のようになります。
button1_Click
System.Void button1_Click(System.Object sender, System.EventArgs e) { static boolean x= false; .. .. Form2.Show(); }
Form2 を閉じるときに、x=true を入れたいのですが、その方法
Form2 otherForm = new Form2(); bool x = false; otherForm.FormClosing += (s,args)=> x = true;
xpublic staticpropertyまたはに変更する必要がありますfield。xクラスレベルで宣言して、他のクラスから見えるようにする必要があります。
x
property
field
次に、必要に応じて From2 から静的プロパティを更新するだけです。