public void MostrarItem(string tabla, int item) { if (Lfx.Workspace.Master == null) { return; } if (this.Visible == false) { return; } TablaSolicitada = tabla; ItemSolicitado = item; if (Lfx.Workspace.Master.SlowLink) { //Reinicio el contador TimerSlowLink.Stop(); TimerSlowLink.Start(); } else { ActualizarBarra(); } }
private void TimerSlowLink_Tick(object sender, EventArgs e) { if (TablaActual != TablaSolicitada || ItemActual != ItemSolicitado) { this.ActualizarBarra(); } TimerSlowLink.Stop(); }