private void TextBoxVenda_TextChanged(object sender, EventArgs e) { FormTextoFormat.MoedaFormat(textBoxVenda); decimal comp = Convert.ToDecimal(textBoxCompra.Text); decimal vend = Convert.ToDecimal(textBoxVenda.Text); decimal liq = vend - comp; if (liq > 0) { textBoxMargem.Text = ((liq / comp) * 100).ToString("F1"); textBoxLiquido.Text = liq.ToString("F2"); } }
private void textBoxValor_TextChanged(object sender, EventArgs e) { FormTextoFormat.MoedaFormat((TextBox)sender); }
private void textBoxPorcento_TextChanged(object sender, EventArgs e) { labelComissao.Text = ""; FormTextoFormat.MoedaFormat((TextBox)sender); }
private void TextBoxCompra_TextChanged(object sender, EventArgs e) { FormTextoFormat.MoedaFormat(textBoxCompra); }
private void textBoxDesconto_TextChanged(object sender, EventArgs e) { FormTextoFormat.MoedaFormat((TextBox)sender); Calcular(); }