private void TxtAcressimo_OnKeyDown(object sender, KeyEventArgs e) { if (e.Key == Key.Enter) { TxtDesconto.Focus(); } }
private void BtnFinPedido_Click(object sender, EventArgs e) { if (MessageBox.Show("Tem certeza que deseja finalizar essa venda?\n Não sera possivel adicionar mais produtos", "Confirmação", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { this.tb_itens_vendaBindingSource.CancelEdit(); DataContextFactory.DataContext.SubmitChanges(); this.VendaCorrente.desconto = 0; textBox1.Enabled = false; TxtQuantidade.Enabled = false; TxtCodigoVenda.Enabled = false; TxtDesconto.ReadOnly = false; TxtDesconto.Focus(); BtnFinPedido.Enabled = false; BtnFinaliVenda.Enabled = true; } }
private void BtnFDP_Click(object sender, EventArgs e) { if (MessageBox.Show("Tem certeza que deseja finalizar está venda? \n Não será possivel adicionar um novo item!", "Comfirmação", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes) { this.itemVendaBindingSource.CancelEdit(); DataContextFactory.DataContext.SubmitChanges(); this.VendaCorrente.Desconto = 0; BtnNovoItem.Enabled = false; //CboProduto.Enabled = false; TxtValor.Enabled = false; TxtCodigoVenda.Enabled = false; TxtQuantidade.Enabled = false; TxtDesconto.ReadOnly = false; TxtDesconto.Focus(); BtnFDP.Enabled = false; BtnFV.Enabled = true; } }
private void TxtDesconto_TextChanged(object sender, EventArgs e) { validarNumeros = new ValidarNumeros(); TxtDesconto.Text = validarNumeros.Valor(TxtDesconto.Text.Trim()); TxtDesconto.Select(TxtDesconto.Text.Length, 0); }