private void TextBoxCodigoBarras_PreviewTextInput(object sender, TextCompositionEventArgs e)
        {
            TextBox padre = sender as TextBox;

            if (!ServiciosDeValidacion.ValidarEntradaDeDatosSoloEntero(e.Text))
            {
                e.Handled = true;
            }
        }