Example #1
0
 private void OnProgressUpdated(object sender, HubSpotManager.ManagerProgressEventArgs e)
 {
     lock (m_logSync)
     {
         ConsoleWriteLine("Downloading " + e.FeatureType.ToString(), ConsoleColor.Cyan);
     }
 }
Example #2
0
        private void OnProgressUpdated(object sender, HubSpotManager.ManagerProgressEventArgs e)
        {
            this.BeginInvoke((Action)(() =>
            {
                // Update other fields
                this.progressBarStatus.Value++;
                this.labelStatusText.Text = "Downloading " + e.FeatureType.ToString();

            }));
        }