private void txtMargemLucro_KeyPress(object sender, KeyPressEventArgs e) { FormataMoeda.aceitaNumero(e); }
private void txtVenda_Leave(object sender, EventArgs e) { FormataMoeda.formatarMoeda(txtVenda); }
private void txtCusto_Leave(object sender, EventArgs e) { FormataMoeda.formatarMoeda(txtCusto); }
private void txtQuantidade_KeyPress(object sender, KeyPressEventArgs e) { FormataMoeda.aceitaNumero(e); }
private void txtDesconto_KeyPress(object sender, KeyPressEventArgs e) { FormataMoeda.aceitaNumero(e); }
private void txtPrecoUnitario_KeyPress(object sender, KeyPressEventArgs e) { FormataMoeda.aceitaNumero(e); }