How to disable a parent form when child form is active using c#?
Its simple, use
Form.ShowDialog();
Instead
Form.Show();
While using Form.ShowDialog()you cannot interact with the parent form until it closes.
Form.ShowDialog()