예제 #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);
 }
예제 #4
0
 private void textBox2_KeyUp(object sender, KeyEventArgs e)
 {
     Validaciones.ValidarCampoDecimal((TextBox)sender);
 }
예제 #5
0
 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);
 }