전자실 업무현황 입력 창에 달력 선택할 수 있도록 함.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user