Example #1
0
            public override void Dispose()
            {
                if (ParentStatusManager.currentPlatform == Core.Platform.Mobile)
                {
                    this.ParentStatusManager.UpdateNormalStatus();
                    this.ParentStatusManager.UpdateProgress(0);
                }

                ParentStatusManager.controllers.Remove(this);
                ParentStatusManager.RefreshStatus();
            }
Example #2
0
 public override void Dispose()
 {
     ParentStatusManager.controllers.Remove(this);
     ParentStatusManager.RefreshStatus();
 }
Example #3
0
 public void SetProgress(double value)
 {
     ParentStatusManager.UpdateProgress(value);
 }
Example #4
0
            public async Task SetStatusWithPauseAsync(string text, int showTimeSeconds)
            {
                ParentStatusManager.UpdateStatusText(text);

                await Task.Delay(showTimeSeconds * 1000);
            }
Example #5
0
 public void SetStatus(string text)
 {
     ParentStatusManager.UpdateStatusText(text);
 }