コード例 #1
0
ファイル: MainForm.cs プロジェクト: LiteHell/OOPProject4
 private void 메모ToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (memoForm == null || memoForm.IsDisposed)
     {
         memoForm         = new MemoForm();
         memoForm.TopMost = true;
         memoForm.Show();
     }
 }
コード例 #2
0
ファイル: MainForm.cs プロジェクト: LiteHell/OOPProject4
        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();
        }