I have three forms (Form1, Form2, Form3), and my need would be:
Form1 opens Form2 with .Show()
, without freezing Form1.
Form2 opens Form3 with .ShowDialog()
without freezing Form1.
I tried passing the owner inside the .Show(this)
and .ShowDialog(this)