What is a proper way of building Winform apps with multiple "screens"
Posted
by
CurtisHx
on Programmers
See other posts from Programmers
or by CurtisHx
Published on 2012-11-05T20:19:07Z
Indexed on
2012/11/05
23:18 UTC
Read the original article
Hit count: 257
What's a proper way of building a Winform app that has multiple 'screens'? For example, I'm trying to write a small backup program (mainly for giggles), and I've been dumping controls and containers onto the form.
I'm using panels and group boxes to separate out the different screens (eg: I'm using a panel to hold all of the controls for the "Settings" window, and another panel to show all the current backups that have been set up). Well, my form.cs file ballooned into a massive amount of code, and I feel like I'm doing something wrong. I can hardly find anything in the file, and I'm ready to start over. This project was just for me to expand my knowledge of C# and .NET, so starting a new project is not a huge deal.
© Programmers or respective owner