Load multiple form in the panel using c#.net Tutorial for beginners

preview_player
Показать описание
Load multiple forms in the main panel using c#.net this is for beginners
you can download the code below
Рекомендации по теме
Комментарии
Автор

Amazing work. Thank u SO much. I was struggling to find out how to create a form inside of another one.

mohamedjoual
Автор

I like the runtime because it can make it easier for the developer behind it. The runtime is also a bit of a hassle for the user because the user has to install the runtime to be able to run the program.

imantw
Автор

Thank you so much ! Great work ! It save me a lot of coding time.

roychan
Автор

May God bless you, i finally got this part of my project done, thank you.

foxitb
Автор

Great work. Reveal the aknowledge with the panels with a easy way. Thanks, was just in your channel that I found whats I was looking for.

jaderson-dsnaveia
Автор

Very beautiful. I appreciate you for your efforts and sharing this code with us. I am working on a huge application for my team and I am going to incorporate this design. Thanks again!!

neerajmehta
Автор

Thanks Sir, for sharing this informative video

AlphaTechSolution
Автор

Thank you so much! This tutorial is life-saving :-)

Is it possible to get the same result AND have a resizable form? I added a snippet to the main form to be able to resize it. But the effect is gone after loading the inner forms. It would be cool to have an add-on tutorial about this 😀

katrinzahnweh
Автор

thank you for sharing this great knowledge

ephemera
Автор

Thank you for share the example of you

nakorns
Автор

how do i add more buttons, when i try it just doesnt do anything but there are no errors any help?

analyzinggames
Автор

is it possible to retain the user inputs in the forms, it resets everywhere when the user moves to another form

eswaranpaneerselvam
Автор

I'm having an issue with Form in panal size when expanding Form Main.

banbuengconnect
Автор

Does somebody when u try it and open a panel, it opens but when u go and try to close it doesn't close properly?

geanluis
Автор

for me comes an error "The method or operation is not implemented."

spongemusic
Автор

It seems the "Menu code" is missing in this video (?).

udomacha
Автор

is it possible to put passcode before it shown to the panel ?

ruelandrew
Автор

When I run app the form is make big and not compatible with form how can fix that ?please

programmer
Автор

Yeeaaah so here is the problem,
its nice to see that the form loads up as normal...
BUT it makes a memory leak.

is there a way how to not make the function cause the memory leak?
(and no Panel.controls.clear() does not work)

sunsetcake
Автор

As someone pointed out, works better than
Additionally you need to surround the whole loadform method in a try catch statement for it to work.
Ex:
public void loadform(object Form)
{
try
{
if > 0)
{

Form f = Form as Form;
f.Dock = DockStyle.Fill;

this.MainPanel.Tag = f;
f.Show();

}
}
catch {


}
}

Hope this helps!

protek