Example #1
0
        private void refreshSelfIntroductionToolStrip()
        {
            while (자기소개서ToolStripMenuItem.DropDownItems.Count > 2)
            {
                자기소개서ToolStripMenuItem.DropDownItems.RemoveAt(2);
            }

            foreach (string i in selfIntroductionManager.GetSelfIntroductionNames())
            {
                ToolStripDropDownItem item = new ToolStripMenuItem();
                item.Text   = i;
                item.Tag    = i;
                item.Click += OnSelfIntroductionMenuClicked;

                자기소개서ToolStripMenuItem.DropDownItems.Add(item);
            }
        }
Example #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();
        }