void IUpdateProgress.ShowCancelableProgress()
 {
     mUpdateProgress = new UpdateProgress(mGuiClient);
     mUpdateProgress.SetCancellable(true);
 }
 void IUpdateProgress.ShowNoCancelableProgress()
 {
     mUpdateProgress = new UpdateProgress(mGuiClient);
     mUpdateProgress.SetCancellable(false);
 }