I'm making a application that I need to change the layout of all the controls on the form. Is there a way I can do this other than having a couple dozen lines of code relentlessly doing something such as:
Picturebox1.Left = 10
Picturebox1.Top = 40
Picturebox1.BackgroundImage = My.Resources.Image1
And so on. My first though was maybe I could create multiple .designer.vb files and execute them when I need to change the form. If I could just make a separate project to design the layout, then copy it's .designer.vb file and execute them as I need them, that would work. If I can't do so, what would the easiest and shortest way to do that be?