コード例 #1
0
ファイル: JobForm.cs プロジェクト: Hanif6731/Jobportal
        private void DgvAppliedJobSeekers_CellDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            DataGridViewRow row = this.dgvAppliedJobSeekers.CurrentRow;

            Delegates.BackToJobForm Back = this.BackHere;
            new JobSeekerForm(Back, row).Visible = true;
            this.Visible = false;
        }
コード例 #2
0
ファイル: JobSeekerForm.cs プロジェクト: Hanif6731/Jobportal
 public JobSeekerForm(Delegates.BackToJobForm backToJob, DataGridViewRow row)
 {
     InitializeComponent();
     this.BackToJob = backToJob;
     this.SetAll(row);
     this.pnlLogout.Visible = false;
     this.BackPage          = "Job";
 }