private void buttonAdicionar_Click(object sender, EventArgs e) { if (String.IsNullOrEmpty(textBoxNovoNome.Text) || textBoxNovoNome.Text == " ") { _FormInicio.EscreverNaConsola("Nome em falta!"); return; } try { Funcionalidades.GuardarNovoOutroNome(IdModelo, textBoxNovoNome.Text); FoiAlterado = true; buttonSair.Enabled = false; CarregarListBoxNomes(); textBoxNovoNome.Clear(); } catch { _FormInicio.EscreverNaConsola("Erro ao guardar outro nome!"); } }