I am quite new to C#. Recently, I got stuck on a problem which is that I want to move two different forms together.
In more detail,
One big form (i.e. something as parent window) popups a small form.
What I want to do is to move these two forms at the same time by moving the parent window.
And, now I am creating the children (small) form by "Show()" method of Form. The problem is that if I click the parent form, a small form goes behind the parent form (i.e. bigger form).
I know this is what should happen. However, I want to move these two forms by moving the bigger form while keeping the small form is front.
I also considered using "ShowDialog()". But, this prevent me from moving the bigger parent. I cannot event touch the parent window.