コード例 #1
0
 private void txtMargemLucro_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
コード例 #2
0
 private void txtVenda_Leave(object sender, EventArgs e)
 {
     FormataMoeda.formatarMoeda(txtVenda);
 }
コード例 #3
0
 private void txtCusto_Leave(object sender, EventArgs e)
 {
     FormataMoeda.formatarMoeda(txtCusto);
 }
コード例 #4
0
 private void txtQuantidade_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
コード例 #5
0
 private void txtDesconto_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }
コード例 #6
0
 private void txtPrecoUnitario_KeyPress(object sender, KeyPressEventArgs e)
 {
     FormataMoeda.aceitaNumero(e);
 }