Creating a multi-page project

G

Guest

I come from the asp world where I'm used to developing web pages. I have
just taken a new job where they want me to be a winform developer. I am
presently creating a project that will have about 12-16 differnt pages. What
is the best way to develop the project. I could show each page in a
different panel, but that seems crazy. So Whats the best way to open and
close the pages when navigating.

Something like:
Form2 mynewform = new Form2();
mynewform.ShowDialog();
this.Hide();
Then if I'm on form3 do I need to create it again, or is there a way to just
show it since I hid it before?
Form1 mynewform = new Form1();
mynewform.ShowDialog();
this.Hide();
I guess I'm trying to find a good article creating a winform app with
several pages, navigating through forms, opening, closing and finally
disposing the project.

Thanks for any help.
-Jeff-
 
V

VJ

You could organize as a MDI application, and provide links from the MDI, to
open all these pages.. Gives a controlled environment

VJ
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top