Example #1
0
        private void AddPatient_ItemClick(object sender, ItemClickEventArgs e)
        {
            AddPatient addPat = new AddPatient();

            addPat.Show();
            addPat.FormClosed += AddPat_FormClosed;
        }
Example #2
0
 private void addPatientButton_Click(object sender, EventArgs e)
 {
     {
         AddPatient addPat = new AddPatient();
         addPat.Show();
         addPat.FormClosed += AddPat_FormClosed;
     }
 }