..
This commit is contained in:
@@ -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)
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user