//------------------------------------------------------------- /// <summary> /// フォームが閉じられた時 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> private void Form1_FormClosed(object sender, FormClosedEventArgs e) { //設定ファイルの保存 JsonPref pref = new JsonPref(); pref.SetPoint("Point", this.Location); pref.SetBoolArray("WizLimit", this.LimitValues); pref.SetString("PictureFolder", wizPictureBox1.PicureFolderPath); pref.Save(); }
//-------------------------------------------------------------------------------------- public void PrefSave() { //設定ファイルの保存 JsonPref pref = new JsonPref(); pref.SetPoint("Point", this.Location); pref.SetInt("Height", this.Height); pref.SetIntArray("ParamsInt", tsGrid1.tsd.ParamsInt); pref.SetBoolArray("ParamsBool", tsGrid1.tsd.ParamsBool); pref.SetIntArray("Colors", tsGrid1.cols.ColorInt); pref.SetIntArray("Keys", tsGrid1.funcs.FuncTableAll); pref.Save(); }