private void NextVideo(object obj)
        {
            if (obj is int tabIndex && tabIndex != 0)
            {
                return;
            }

            VideoCollectionView.MoveCurrentToNext();

            if (VideoCollectionView.IsCurrentAfterLast)
            {
                VideoCollectionView.MoveCurrentToFirst();
            }
        }