示例#1
0
 private void txtMarca_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloLetras(e);
 }
示例#2
0
 private void txtCantidad_KeyUp(object sender, KeyEventArgs e)
 {
     Validaciones.ValidarCampoEntero((TextBox)sender);
 }
示例#3
0
 private void txtPrecio_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.SoloNumeros(e);
 }
 private void textBox2_KeyUp(object sender, KeyEventArgs e)
 {
     Validaciones.ValidarCampoDecimal((TextBox)sender);
 }
 private void textBox3_TextChanged(object sender, EventArgs e)
 {
     Validaciones.ValidarCampoEntero((TextBox)sender);
 }
 private void TxtBuscarCodigoBarra_PreviewTextInput(object sender, TextCompositionEventArgs e) => Validaciones.SoloNumeros(sender, e);
示例#7
0
 private void txtDescripcion_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }
示例#8
0
 private void txtNombre_KeyPress(object sender, KeyPressEventArgs e)
 {
     Validaciones.sololetras(e);
 }