Second window behavior
-
I have Form, and with a button, it launches a second form. I want the second form to "stay with" the first form. On top of it, in fact. But, not on top of everything else. Does any of this make sense? This is not MDI... I've exhausted Google -- it's tired of me search for different variations of "form, window, child, parent, etc...". Thoughts?
-
I have Form, and with a button, it launches a second form. I want the second form to "stay with" the first form. On top of it, in fact. But, not on top of everything else. Does any of this make sense? This is not MDI... I've exhausted Google -- it's tired of me search for different variations of "form, window, child, parent, etc...". Thoughts?
In your parent form, do this to create the child:
Form f = new Form();
f.Owner = this;
f.Show();I hope that's what you were looking for ;)
Sunrise Wallpaper Project | The StartPage Randomizer | A Random Web Page
-
In your parent form, do this to create the child:
Form f = new Form();
f.Owner = this;
f.Show();I hope that's what you were looking for ;)
Sunrise Wallpaper Project | The StartPage Randomizer | A Random Web Page
That was it. Thank you very much.