This commit is contained in:
chi
2022-05-01 21:17:45 +09:00
parent ff32598e85
commit bf40e0ee7b
33 changed files with 4249 additions and 2737 deletions

View File

@@ -180,8 +180,17 @@ namespace FBS0000.Holiday
if (dataError)
{
lv.ForeColor = Color.Tomato;
lv.Checked = true;
//해당 월이 마감되었다면 청색으로 한다.
if (FCOMMON.DBM.GetMagamStatus(pdate.Substring(0, 7)))
{
lv.ForeColor = Color.Blue;
lv.Checked = false;
}
else
{
lv.ForeColor = Color.Tomato;
lv.Checked = true;
}
}
else lv.ForeColor = Color.Black;