private void BtnEliminar_Click(object sender, EventArgs e)
        {
            if (lstResultadoBusqueda.SelectedItems.Count > 0 && lstResultadoBusqueda.SelectedItems[0] != null)
            {
                try
                {
                    VehiculoBE vehiculo = lstResultadoBusqueda.SelectedItems[0].Tag as VehiculoBE;
                    Vehiculo.Borrar(vehiculo);

                    MessageBox.Show(ObtenerLeyenda("msgVehiculoBorrado"), string.Empty,
                                    MessageBoxButtons.OK, MessageBoxIcon.Information);
                    ResetearFormulario();
                    btnBuscar.PerformClick();
                }
                catch
                {
                    MostrarError();
                }
            }
        }