BlipFace.Helpers.WindowSettings.SaveWindowState C# (CSharp) Method

SaveWindowState() protected method

Save the Window Size, Location and State to the settings object
protected SaveWindowState ( ) : void
return void
        protected virtual void SaveWindowState()
        {
            Properties.Settings.Default[window.GetType().Name] = this.window.RestoreBounds.ToString();
            Properties.Settings.Default.Save();
        }