How to leave a form always behind?

4

I'm trying to leave a form always below the other forms, it does not matter if the user clicks on it, it should always be underneath but usable, something like the desktop, and that's where the problem is, no I'm trying to do this, I'd like to know which approach I should use.

I read about some means to always leave ahead, I do not know if to reverse this, to always be underneath would work.

    
asked by anonymous 13.04.2014 / 05:38

1 answer

3

Your main form should have property IsMdiContaner set to true . The child forms, which are created inside the MDI Container form, should be called like this:

ChildForm form = new ChildForm();
form.MdiParent = this;
form.Show();

Example output:

    
13.04.2014 / 05:58