Exemple #1
0
 public ResumeForm(ResumeManager manager)
 {
     this.manager = manager;
     InitializeComponent();
     txt_addr.TextChanged           += SaveResumeHandler;
     txt_email.TextChanged          += SaveResumeHandler;
     txt_name.TextChanged           += SaveResumeHandler;
     txt_phone.TextChanged          += SaveResumeHandler;
     txt_tel.TextChanged            += SaveResumeHandler;
     dateTime_birthday.ValueChanged += SaveResumeHandler;
     LoadResume();
 }
Exemple #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();
        }