전자실 업무현황 입력 창에 달력 선택할 수 있도록 함.

This commit is contained in:
chi
2021-03-12 15:07:53 +09:00
parent b4746b6247
commit e5a4d5ea3c
3 changed files with 154 additions and 84 deletions

View File

@@ -598,5 +598,25 @@ namespace FPJ0000
this.chkDelay.BackColor = chkDelay.Checked ? Color.Lime : SystemColors.Control;
this.refreshData();
}
private void toolStripButton4_Click_1(object sender, EventArgs e)
{
var dt = DateTime.Parse(this.cmbYearS.Text);
var f = new FCOMMON.fSelectDay(dt);
if(f.ShowDialog() == DialogResult.OK)
{
this.cmbYearS.Text = f.dtPick.SelectionStart.ToShortDateString();
}
}
private void toolStripButton5_Click(object sender, EventArgs e)
{
var dt = DateTime.Parse(this.cmbYearE.Text);
var f = new FCOMMON.fSelectDay(dt);
if (f.ShowDialog() == DialogResult.OK)
{
this.cmbYearE.Text = f.dtPick.SelectionStart.ToShortDateString();
}
}
}
}