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.
FormClosingイベントで子から親フォームを閉じることは可能ですか?
Close()親のが子を再び閉じようとするので、それはエラーを引き起こしますか...
Close()
誰かが反対票を投じたので、質問を更新します。.NETと一緒にprogress(OpenEdge)を使用しています。子フォームが親フォームを閉じようとするこのような構造がある場合、大きなProgressエラーが発生します。純粋な.NETWinFormsアプリケーションでは、これが問題になるのではないかと思っていました。
最初に子を削除すると、次を使用して子を親から削除できます。
' Remove child from parent Dim p As Form = myChild.Parent p.Children.Remove(myChild)