4
I’m trying to always leave a form underneath the other forms, no matter if the user clicks on it, it should always be below, but usable, something similar to the desktop, and that’s the problem, I’m not able to do that, would like to know what approach I should use.
I read about some ways to always leave it in front, I don’t know if reversing it, to always stay below would work.
You’re talking about MDI?
– user3628
Like, you are calling?
– user6026
@Fulvius, Instantiating and calling.
Form1 formulario = new Form1();
andformulario.Show();
.– ptkato
@James, yes, MDI.
– ptkato
If it is not MDI use form.Showdialog();
– user6026