121 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			121 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using System;
 | |
| using System.Collections.Generic;
 | |
| using System.ComponentModel;
 | |
| using System.Data;
 | |
| using System.Drawing;
 | |
| using System.Linq;
 | |
| using System.Text;
 | |
| using System.Threading.Tasks;
 | |
| using System.Windows.Forms;
 | |
| 
 | |
| namespace JobReportMailService
 | |
| {
 | |
|     public partial class MDIParent1 : Form
 | |
|     {
 | |
|         private int childFormNumber = 0;
 | |
| 
 | |
|         public MDIParent1()
 | |
|         {
 | |
|             InitializeComponent();
 | |
|         }
 | |
| 
 | |
|         private void ShowNewForm(object sender, EventArgs e)
 | |
|         {
 | |
|             Form childForm = new fJobReportDay();
 | |
|             childForm.MdiParent = this;
 | |
|             //childForm.Text = "창 " + childFormNumber++;
 | |
|             childForm.Show();
 | |
|         }
 | |
| 
 | |
|         private void OpenFile(object sender, EventArgs e)
 | |
|         {
 | |
|             Form childForm = new fJobReportWeek();
 | |
|             childForm.MdiParent = this;
 | |
|             //childForm.Text = "창 " + childFormNumber++;
 | |
|             childForm.Show();
 | |
|         }
 | |
| 
 | |
|         private void SaveAsToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             SaveFileDialog saveFileDialog = new SaveFileDialog();
 | |
|             saveFileDialog.InitialDirectory = Environment.GetFolderPath(Environment.SpecialFolder.Personal);
 | |
|             saveFileDialog.Filter = "텍스트 파일 (*.txt)|*.txt|모든 파일 (*.*)|*.*";
 | |
|             if (saveFileDialog.ShowDialog(this) == DialogResult.OK)
 | |
|             {
 | |
|                 string FileName = saveFileDialog.FileName;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private void ExitToolsStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             this.Close();
 | |
|         }
 | |
| 
 | |
|         private void CutToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         private void CopyToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         private void PasteToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|         }
 | |
| 
 | |
|         private void ToolBarToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             toolStrip.Visible = toolBarToolStripMenuItem.Checked;
 | |
|         }
 | |
| 
 | |
|         private void StatusBarToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             statusStrip.Visible = statusBarToolStripMenuItem.Checked;
 | |
|         }
 | |
| 
 | |
|         private void CascadeToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             LayoutMdi(MdiLayout.Cascade);
 | |
|         }
 | |
| 
 | |
|         private void TileVerticalToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             LayoutMdi(MdiLayout.TileVertical);
 | |
|         }
 | |
| 
 | |
|         private void TileHorizontalToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             LayoutMdi(MdiLayout.TileHorizontal);
 | |
|         }
 | |
| 
 | |
|         private void ArrangeIconsToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             LayoutMdi(MdiLayout.ArrangeIcons);
 | |
|         }
 | |
| 
 | |
|         private void CloseAllToolStripMenuItem_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             foreach (Form childForm in MdiChildren)
 | |
|             {
 | |
|                 childForm.Close();
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         private void saveToolStripButton_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             Form childForm = new fScheduleDay();
 | |
|             childForm.MdiParent = this;
 | |
|             //childForm.Text = "창 " + childFormNumber++;
 | |
|             childForm.Show();
 | |
|         }
 | |
| 
 | |
|         private void printToolStripButton_Click(object sender, EventArgs e)
 | |
|         {
 | |
|             Form childForm = new fScheduleDayWeek();
 | |
|             childForm.MdiParent = this;
 | |
|             //childForm.Text = "창 " + childFormNumber++;
 | |
|             childForm.Show();
 | |
|         }
 | |
|     }
 | |
| }
 | 
