private void btProximo_Click(object sender, EventArgs e) { try { num++; lbExemplo.Visible = false; verbo = verboController.getListaVerbos()[num]; lbVariavelVerboIrregular.Text = verbo.getNome(); liberarTudo(); lbVariavelPalavra.Text = (num + 1).ToString(); rdNumero.Enabled = true; rdNome.Enabled = true; tbBuscar.Enabled = true; btBuscar.Enabled = true; rdNumero.Focus(); tbInfinitivo.Text = ""; tbPassadoSimples.Text = ""; tbParticipioPassado.Text = ""; tbTraducao.Text = ""; desativarCorretoIncorreto(); tbBuscar.Text = ""; tbInfinitivo.Focus(); if (verbo.getId() == verboController.getListaVerbos().Count()) { btProximo.Enabled = false; } }catch (System.ArgumentOutOfRangeException) { } }
private void inicializarExemplo() { lbVariavelVerboIrregular.Text = verbo.getNome(); lbVariavelInfinitivo.Text = verbo.getInfinitivo(); lbVariavelPassadoSimples.Text = verbo.gepassadoSimples(); lbVariavelParticipioPassado.Text = verbo.getparticipioPassado(); lbVariavelTraducao.Text = verbo.gettraducao(); lbVariavelPalavra.Text = verbo.getId().ToString(); lbVariavelTotal.Text = verboController.getListaVerbos().Count.ToString(); }