예제 #1
0
 private void 이력서ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (resumeForm == null || resumeForm.IsDisposed)
     {
         resumeForm           = new ResumeForm(resumeManager);
         resumeForm.MdiParent = this;
         resumeForm.Show();
     }
 }
예제 #2
0
        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();
        }