Example #1
0
 /// <summary>
 /// Shows the progress with the given message.
 /// </summary>
 /// <param name="key">A string message with just a description of what is happening, but no percent completion information</param>
 /// <param name="percent">The integer percent from 0 to 100</param>
 /// <param name="message">A message</param>
 public void Progress(string key, int percent, string message)
 {
     if (!_isActivated)
     {
         return;
     }
     _statusStrip.Progress(key, percent, message);
 }