public SelfIntroductionDialog(string name, SelfIntroductionManager manager)
 {
     this.SetSelfIntroductionName(name);
     this.SetSelfIntroductionManager(manager);
     InitializeComponent();
     this.Text = "자기소개서 - " + this.GetSelfIntroductionName();
     loadIntroductions();
     OnFileRenamedOrDeleted += (object sender, EventArgs e) => { };
 }
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();
        }
 public void SetSelfIntroductionManager(SelfIntroductionManager value)
 {
     selfIntroductionManager = value;
 }