コード例 #1
0
ファイル: HostWaitLoop.cs プロジェクト: optikos/MIEngine
 public void SetProgress(int totalSteps, int currentStep, string progressText)
 {
     lock (_progressLock)
     {
         if (_vsWaitLoop != null)
         {
             _vsWaitLoop.SetProgress(totalSteps, currentStep, progressText);
         }
     }
 }