Skip to content

Skkay/FormSerialisor

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

FormSerialisor

Saving the state (serializing) a Windows Form.  Original author : https://www.codeproject.com/Articles/86503/Saving-the-state-serializing-a-Windows-Form

 

How to use :

To use this code in your own project, all you need to do is drop the FormSerialisor.cs file into your project, and then add the following line at the top of any class where you wish to use the code:

using FormSerialisation;

To serialize :

FormSerialisor.Serialise(this, Application.StartupPath + @"\serialise.xml");

To deserialise :

FormSerialisor.Deserialise(this, Application.StartupPath + @"\serialise.xml");

More info on original page.

 

Adding :

DateTimePicker serialisor and deserialisor.

About

Saving the state (serializing) a Windows Form

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages