How to disable a parent form when child form is active using c#?
Have you tried using Form.ShowDialog() instead of Form.Show()?
ShowDialog shows your window as modal, which means you cannot interact with the parent form until it closes.
1.4m articles
1.4m replys
5 comments
57.0k users