아웃룩 오픈 긴능 추가

This commit is contained in:
chikyun.kim
2018-09-27 08:21:00 +09:00
parent 30583ad369
commit 78f316bc3a
61 changed files with 3407 additions and 43 deletions

View File

@@ -17,8 +17,7 @@ namespace Project
InitializeComponent();
this.KeyDown += (s1, e1) =>
{
if (e1.KeyCode == Keys.Escape) this.Close();
else if (e1.KeyCode == Keys.F12) btSetting.PerformClick();
if (e1.KeyCode == Keys.F12) btSetting.PerformClick();
else if (e1.KeyCode == Keys.F11) btLog.PerformClick();
else if (e1.KeyCode == Keys.F1 && e1.Control && e1.Shift)
{
@@ -310,5 +309,26 @@ namespace Project
f.Show();
}
private void holidayToolStripMenuItem_Click(object sender, EventArgs e)
{
var f = new FBS0000.fHolyday();
f.MdiParent = this;
f.Show();
}
private void codesToolStripMenuItem_Click(object sender, EventArgs e)
{
var f = new FCM0000.fCode();
f.MdiParent = this;
f.Show();
}
private void mailFormToolStripMenuItem_Click(object sender, EventArgs e)
{
FCM0000.fMailform f = new FCM0000.fMailform();
f.MdiParent = this;
f.Show();
}
}
}