I have been working on an application which allows the user to make a label template for printing purposes by adding label controls to a panel(which I use as a container). I ha
I wouldn't directly serialize a form to a file. Sounds like you need to create a class that will hold the state of the user's work. You should then serialize that class to and from a file. There are built in methods for that using either Binary or XML Serialization.