Exemple #1
0
        private void txtValor_TextChanged(object sender, EventArgs e)
        {
            Lava_Rapido a = (Lava_Rapido)modelo;

            try { a.Validar(txtValor.Text, "Valor"); }
            catch (Exception ex) { MessageBox.Show(modelo.exibirMensagemErro(ex, 2)); }
        }
Exemple #2
0
        private void FrmCadastrarLavaRapido_Load(object sender, EventArgs e)
        {
            var form = "Lava-Rápido";

            if (CondicaoAtualizar)
            {
                this.Text = "Atualizar registro - " + form;
            }
            if (CondicaoDeletar)
            {
                this.Text = "Deletar registro - " + form;
            }
            if (CondicaoDetalhes)
            {
                this.Text = "Detalhes registro - " + form;
            }
            if (!CondicaoDeletar && !CondicaoAtualizar && !CondicaoDetalhes)
            {
                this.Text = "Cadastro - " + form;
            }

            Lava_Rapido a = (Lava_Rapido)modelo;

            try{ txtValor.Text = a.Valor.ToString(); }  catch (Exception ex) { MessageBox.Show(modelo.exibirMensagemErro(ex, 2)); }
            try{ checkBoxPagou.Checked = a.Pago; }  catch (Exception ex) { MessageBox.Show(modelo.exibirMensagemErro(ex, 2)); }
            try { if (a.Pessoa_ != null)
                  {
                      txt_numero_id.Text = a.Pessoa_.ToString();
                  }
            }
            catch (Exception ex) { MessageBox.Show(modelo.exibirMensagemErro(ex, 2)); }
        }
Exemple #3
0
        private void txt_numero_id_TextChanged(object sender, EventArgs e)
        {
            Lava_Rapido a = (Lava_Rapido)modelo;

            try
            {
                a.Pessoa_ = int.Parse(txt_numero_id.Text);
            }
            catch { MessageBox.Show("Informe um numero de identificação do comprador."); }
        }