Exemplo n.º 1
0
        private static void ShowPatientInfoForm(Patient patient)
        {
            Form form = new PatientInfoForm(patient);

            FormHelper.MoveToCenter(form);
            form.ShowDialog();
        }
Exemplo n.º 2
0
        private void BtnRegist_Click(object sender, EventArgs e)
        {
            Form form = new PatientInfoForm();

            FormHelper.MoveToCenter(form);
            form.ShowDialog();
        }