示例#1
0
        private void button1_Click(object sender, EventArgs e)
        {
            inlistNewPatient inlistForm = new inlistNewPatient(this);

            inlistForm.ShowDialog();
            saveHistory(parent.patientList);
            refreshListBox();
        }
示例#2
0
 private void buttonEdit_Click(object sender, EventArgs e)
 {
     inlistNewPatient inlistForm = new inlistNewPatient(this, currentPatientId);
     inlistForm.ShowDialog();
     saveHistory(parent.patientList);
     refreshListBox();
 }