BlipFace.Helpers.WindowSettings.SaveWindowState C# (CSharp) 메소드

SaveWindowState() 보호된 메소드

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