190806 chi 품목정보에서 카테고리 없는 자료도 보이게 함
품목정보 정렬 기능 추가 190731 로그기록화면(beta)추가
This commit is contained in:
		
							
								
								
									
										34
									
								
								SubProject/FLG0000/Setting.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								SubProject/FLG0000/Setting.cs
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,34 @@ | ||||
| using System; | ||||
| using System.Collections.Generic; | ||||
| using System.Linq; | ||||
| using System.Text; | ||||
| using System.ComponentModel; | ||||
|  | ||||
| namespace FLG0000 | ||||
| { | ||||
|     | ||||
|     public class UserSetting : arUtil.Setting | ||||
|     { | ||||
|         public string lastType { get; set; } | ||||
|         public UserSetting(string file) | ||||
|         { | ||||
|             this.filename = file; | ||||
|             var fi = new System.IO.FileInfo(this.filename); | ||||
|             if (fi.Directory.Exists == false) fi.Directory.Create(); | ||||
|             if (fi.Exists == false) | ||||
|             { | ||||
|                 this.Load(); | ||||
|                 this.Save(); | ||||
|             } | ||||
|         }  | ||||
|         public override void AfterLoad() | ||||
|         { | ||||
|             if (lastType == "") lastType = "00"; | ||||
|         } | ||||
|         public override void AfterSave() | ||||
|         { | ||||
|             //throw new NotImplementedException(); | ||||
|         } | ||||
|     } | ||||
|     | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 chikyun.kim
					chikyun.kim