public ProgressScreen() { instance = this; operations = new List <ProgressOperation>(); commandMap = new CommandMap(@"App.ProgressScreen"); }
} // 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()
public void Complete() { ProgressScreen.UnregisterOperation(this); }