private void 이력서ToolStripMenuItem_Click(object sender, EventArgs e) { if (resumeForm == null || resumeForm.IsDisposed) { resumeForm = new ResumeForm(resumeManager); resumeForm.MdiParent = this; resumeForm.Show(); } }
public MainForm() { InitializeComponent(); this.IsMdiContainer = true; resumeManager = new ResumeManager(); selfIntroductionManager = new SelfIntroductionManager(); resumeForm = null; memoForm = null; this.WindowState = FormWindowState.Maximized; if (selfIntroductionManager.GetSelfIntroductionNames().Length == 0) { selfIntroductionManager.SaveSelfIntroduction("기본", null); } refreshSelfIntroductionToolStrip(); }