protected virtual void OnTouchStarted(BaseActionViewCell sender) { if (LastOpenedCell != this) { SetLastOpenedCell(this); } }
protected virtual void OnTouchStarted(BaseActionViewCell sender) { if (LastOpenedCell == this) { return; } LastOpenedCell?.ForceClose(); LastOpenedCell = this; }
protected virtual void OnTouchEnded(BaseActionViewCell sender) => SetThisAsLastOpenedCell();