示例#1
0
        private void UpdateSearchEngineProgress(IProgressStatus status)
        {
            var newEntry = new ProgressEntry(DateTime.Now, status.Message);

            _progressTextItems.Add(newEntry);
            txtSearchProgress.AppendText($@"{newEntry.ToString(showTimestampsCheckbox.Checked)}{Environment.NewLine}");
            UpdateTaskbarProgress(TaskbarProgress.TaskbarStates.Normal, status.PercentComplete);
            progressBar.Value = status.PercentComplete;
        }