コード例 #1
0
        private void btnShow_Click(object sender, EventArgs e)
        {
            ShowResume s = new ShowResume(this.Email, this);

            s.Show();
            this.Hide();
        }
コード例 #2
0
 private void clientDataGridSearch_CellContentClick(object sender, DataGridViewCellEventArgs e)
 {
     if (e.RowIndex != -1)
     {
         ShowResume sr = new ShowResume(clientDataGridSearch.Rows[e.RowIndex].Cells[0].Value.ToString(), this);
         sr.Show();
         this.Hide();
     }
 }