예제 #1
0
        private void OnDelete()
        {
            int    numberOfSongs = ((IAnnotatedBeatmapLevelCollection)selectedPlaylist).beatmapLevelCollection.beatmapLevels.Length;
            string checkboxText  = numberOfSongs > 0 ? $"Also delete all {numberOfSongs} songs from the game." : "";

            popupModalsController.ShowYesNoModal(rootTransform, $"Are you sure you would like to delete the playlist \"{selectedPlaylist.Title}\"?", DeleteButtonPressed, checkboxText: checkboxText);
        }
 private void OnCellSelect(TableView tableView, int index)
 {
     customListTableData.tableView.ClearSelection();
     selectedIndex = index;
     popupModalsController.ShowYesNoModal(modalTransform, "Are you sure you want to change the image of the playlist? This cannot be reverted.", ChangeImage, animateParentCanvas: false);
 }
 private void DeleteButtonClicked()
 {
     popupModalsController.ShowYesNoModal(levelSelectionNavigationController.transform, string.Format("Are you sure you want to delete {0} along with all playlists and subfolders?", Path.GetFileName(currentParentManager.PlaylistPath)), DeleteConfirm);
 }