private void BtnAgregarFamiliar_Click(object sender, EventArgs e)
        {
            PacientesRegistro pacientesDatos = new PacientesRegistro();

            pacientesDatos.ShowDialog();
            this.Close();
        }
 private void BtnModificar_Click(object sender, EventArgs e)
 {
     pacientesDatos.ShowDialog();
     this.Close();
 }