private void toolStripButton1_Click(object sender, EventArgs e) { FichePatient fichePatient = new FichePatient(this); fichePatient.ShowDialog(); }
private void modifierToolStripMenuItem_Click(object sender, EventArgs e) { FichePatient fichePatient = new FichePatient(this, dataGridView1.CurrentRow.Cells[0].Value.ToString(), 2); fichePatient.ShowDialog(); }
private void addPatientToolStripMenuItem_Click(object sender, EventArgs e) { FichePatient fiche = new FichePatient(this); fiche.ShowDialog(); }