Catrobat.IDE.Core.ViewModels.Main.MainViewModel.DeleteLocalProgramAction C# (CSharp) Method

DeleteLocalProgramAction() private method

private DeleteLocalProgramAction ( string programName ) : void
programName string
return void
        private void DeleteLocalProgramAction(string programName)
        {
            _deleteProgramName = programName;

            ServiceLocator.NotifictionService.ShowMessageBox(
                AppResourcesHelper.Get("Main_MainDeleteProgramDialogTitle"),
                String.Format(AppResourcesHelper.Get("Main_MainDeleteProgramDialogMessage"), programName),
                DeleteProgramMessageCallback, MessageBoxOptions.OkCancel);
        }