Initial commit

This commit is contained in:
ChiKyun Kim
2025-07-17 16:11:46 +09:00
parent 4865711adc
commit 4a1b1924ba
743 changed files with 230954 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace ResultView
{
public class CSetting : arUtil.Setting
{
public string MCName { get; set; }
[DisplayName("프린터이름")]
public string PrinterName { get; set; }
[DisplayName("프린트 테두리 그림")]
public Boolean DrawBorder { get; set; }
[DisplayName("라벨포맷 7자리 사용")]
public Boolean PrinterForm7 { get; set; }
public override void AfterLoad()
{
if (PrinterName.isEmpty()) PrinterName = "PrinterL";
}
public override void AfterSave()
{
//throw new NotImplementedException();
}
}
}