private void BtnAgregarEstudiante_Click(object sender, EventArgs e)
        {
            FrmFormularioEstudiante newForm = new FrmFormularioEstudiante();

            newForm.Show();
            this.Hide();
        }
        private void BtnEditar_Click(object sender, EventArgs e)
        {
            int index = LboxEstudiantes.SelectedIndex;

            if (index < 0)
            {
                MessageBox.Show("Debe seleccionar un estudiante", "Notificacion");
            }
            else
            {
                FrmFormularioEstudiante newForm = new FrmFormularioEstudiante();
                newForm.indexEstudiante = index;
                newForm.Show();
                this.Hide();
            }
        }