50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| //190806    chi getWorkWeek 추가
 | |
| //190805    chi MakeCSVString 추가
 | |
| //180903    chi makefilepath/ ftppath 추가
 | |
| //180807    chi rad2deg, deg2rad 추가
 | |
| //180625    chi  ToCharHexString,ToStringFromHexString 추가
 | |
| //180624    chi isLocalApplication 추가
 | |
| //180618    chi GetCSVBuffer 추가
 | |
| //180614    chi map 명령어 추가
 | |
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.Diagnostics;
 | |
| using System.IO;
 | |
| using System.Linq;
 | |
| using System.Net;
 | |
| using System.Text;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace FCOMMON
 | |
| {
 | |
|     public static partial class Setting
 | |
|     {
 | |
|         private static SystemSetting _system = null;
 | |
|         public static SystemSetting system
 | |
|         {
 | |
|             get
 | |
|             {
 | |
|                 if(_system== null)
 | |
|                 {
 | |
|                     _system = new SystemSetting();
 | |
|                     _system.filename = AppDomain.CurrentDomain.BaseDirectory + "Commonsetting.xml";
 | |
|                     _system.Load();
 | |
|                 }
 | |
|                 return _system;
 | |
|             }
 | |
|         }
 | |
|     }
 | |
|     public class SystemSetting : arUtil.Setting
 | |
|     {
 | |
|         public Boolean fullScreen { get; set; }
 | |
|         public override void AfterLoad()
 | |
|         {
 | |
|             //throw new NotImplementedException();
 | |
|         }
 | |
|         public override void AfterSave()
 | |
|         {
 | |
|             //throw new NotImplementedException();
 | |
|         }
 | |
|     }
 | |
| }
 | 
