public ABMTelefono(Telefono telefono, bool elimina) { InitializeComponent(); tel = telefono; if (elimina) { tel.Habilitado = false; Utils.habilitar(false, gbTel); } else { tel.Habilitado = true; } }
private void btnCancelar_Click(object sender, EventArgs e) { tel = null; Dispose(); }
private void ABMTelefono_FormClosed(object sender, FormClosedEventArgs e) { if(cancela) tel = null; }