BExplorer.Shell.ShellView.selectionTimer_Tick C# (CSharp) Method

selectionTimer_Tick() private method

private selectionTimer_Tick ( Object sender, EventArgs e ) : void
sender Object
e EventArgs
return void
    private void selectionTimer_Tick(Object sender, EventArgs e) {
      if (MouseButtons != MouseButtons.Left) {
        (sender as F.Timer)?.Stop();
        OnSelectionChanged();
        KeyJumpTimerDone?.Invoke(this, EventArgs.Empty);
      }
      if (this._ItemForRename != this.GetFirstSelectedItemIndex() && !this.IsRenameInProgress) {
        (sender as F.Timer)?.Stop();
        this.EndLabelEdit();
      }
    }
ShellView