Exemple #1
0
        private void BtnJobSearch_Click(object sender, EventArgs e)
        {
            JobListForm frm = new JobListForm();

            if (frm.ShowDialog() == DialogResult.OK)
            {
                this.txtJob.Text = frm.jobName;
            }
        }
Exemple #2
0
        private void 직업리스트ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            bool bCheck = FormOverFlowCheck("JobListForm");

            if (!bCheck)
            {
                MaterialMessageBox.Show("이미열려있는 화면입니다.", "경고", MessageBoxButtons.OK);
                return;
            }
            JobListForm frm = new JobListForm();

            frm.Show();
        }