void crearContacto(object sender, EventArgs args) { if (nombreContacto.Text != "") { //Crear el contacto Contacto nuevo = new Contacto(nombreContacto.Text, apellidosContacto.Text, direccionContacto.Text, emailContacto.Text, telefonoContacto.Text); Agenda agenda = Agenda.Get(); agenda.AddContacto(nuevo); agenda.SaveXML(); alertaOperacionExitosa(); this.Destroy(); } else { alertaIntroduzcaAlMenosNombre(); } }