//Takes user to the applicant information page of the name selected.
 private void ViewApplicantInfo(object sender, EventArgs e)
 {
     var viewAppInfo = new ApplicantInformation { Text = this.ApplicantList.SelectedItem.ToString() };
     viewAppInfo.Show();
     this.Hide();
 }
 //Takes the user back to the Applicant Information page.
 private void BackButton(object sender, EventArgs e)
 {
     var backAppInfo = new ApplicantInformation();
     backAppInfo.Show();
     this.Hide();
 }