private void txtCodigo_KeyPress(object sender, KeyPressEventArgs e)
 {
     Filtro.AlfanumericoComaPuntoGuion(e);
     if (e.KeyChar == (char)Keys.Enter)
     {
         btnAceptar_Click(sender, e);
     }
 }