This commit is contained in:
chikyun.kim
2018-12-08 15:12:15 +09:00
parent 3f68c3c5e8
commit 43841e6c52
43 changed files with 6312 additions and 1015 deletions

View File

@@ -6,6 +6,11 @@ using System.ComponentModel;
namespace Project
{
public enum eFormList
{
=0,
NR구매관리,
}
public class Setting : arUtil.Setting
{
#region "log"
@@ -14,6 +19,12 @@ namespace Project
public Boolean Log_IO { get; set; }
#endregion
[Description("시작 화면")]
public eFormList startForm { get; set; }
[Description("중복으로 창을 열수 있습니다")]
public Boolean DupWindow { get; set; }
[Description("Password for Setting")]
[Browsable(false)]
@@ -54,6 +65,21 @@ namespace Project
if (Language.isEmpty()) Language = "Kor";
if (Password_Setup.isEmpty()) Password_Setup = "0000";
if (Password_User.isEmpty()) Password_User = "9999";
//시작폼가져오기
var = Xml.get_Data("startForm");
var list = Enum.GetNames(typeof(eFormList));
int idx = -1;
for(int i = 0 ;i<list.Length;i++)
{
if(list[i] == )
{
idx = i;
}
}
if (idx == -1) this.startForm = eFormList.;
else this.startForm = (eFormList)idx;
}
public override void AfterSave()
{