Exemple #1
0
        public ProgressScreen()
        {
            instance = this;

            operations = new List <ProgressOperation>();
            commandMap = new CommandMap(@"App.ProgressScreen");
        }
Exemple #2
0
        }   // end of TitleScreenMode Refresh()

        override public void Activate()
        {
            if (!state)
            {
                if (progress == null)
                {
                    progress            = ProgressScreen.RegisterOperation();
                    progress.AlwaysShow = true;
                }
                pendingState = true;
            }
        }   // end of TitleScreenMode Activate()
Exemple #3
0
 public void Complete()
 {
     ProgressScreen.UnregisterOperation(this);
 }