public FormNuevoAlumno(string title) { InitializeComponent(); shared = this; // Change text of toolStripLabel1 (title) toolStripLabel1.Text = title; }
// Click boton ´Modificar alumno´ private void buttonModificarAlumno_Click(object sender, EventArgs e) { if (listViewAlumnos.SelectedItems.Count == 0) { MessageBox.Show("Selecciona un contacto"); } else { FormNuevoAlumno formNuevoAlumno = new FormNuevoAlumno("Modificar Alumno"); formNuevoAlumno.Show(); FormNuevoAlumno.shared.cargarDatosAlumno(listViewAlumnos.SelectedItems[0]); } }
// Click boton ´Nuevo alumno´ private void buttonNuevoAlumno_Click(object sender, EventArgs e) { FormNuevoAlumno formNuevoAlumno = new FormNuevoAlumno("Nuevo Alumno"); formNuevoAlumno.Show(); }
public FormNuevoAlumno() { InitializeComponent(); shared = this; }