This commit is contained in:
ChiKyun Kim
2025-09-09 08:25:50 +09:00
parent 9a7d1d27c7
commit adb66451ca
79 changed files with 4195 additions and 2213 deletions

View File

@@ -206,7 +206,7 @@ namespace Project
UTIL.MsgE("언어파일이 없습니다\n" + langfile);
return;
}
var ini = new arUtil.INIHelper();
var ini = new AR.INIHelper();
ini.Load(langfile);
this.dataSet1.language.Clear();
foreach (var item in ini.GetItemList("lang").OrderBy(t => t.Key))
@@ -222,7 +222,7 @@ namespace Project
private void toolStripButton2_Click(object sender, EventArgs e)
{
var file = Lang.FileName;
var ini = new arUtil.INIHelper(file);
var ini = new AR.INIHelper(file);
this.bsLang.EndEdit();
this.dataSet1.language.AcceptChanges();
foreach (DataSet1.languageRow dr in dataSet1.language.Rows)

View File

@@ -6,6 +6,7 @@ using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using AR;
namespace Project.Dialog
{
@@ -25,13 +26,13 @@ namespace Project.Dialog
private void button1_Click(object sender, EventArgs e)
{
this.Invalidate();
PUB.system.Save();
SETTING.System.Save();
DialogResult = System.Windows.Forms.DialogResult.OK;
}
private void SystemParameter_Load(object sender, EventArgs e)
{
this.propertyGrid1.SelectedObject = PUB.system;
this.propertyGrid1.SelectedObject = SETTING.System;
this.propertyGrid1.Invalidate();
}