Example #1
0
        /// <summary>
        ///
        /// </summary>
        /// <param name="args"></param>
        public void InvokeSearchCompalite(SearchCompaliteArgs args)
        {
            _progress.Percent = 100;
            InvokeProgressChange(_progress);
            OnSearchCompalite handler = SearchCompalite;

            if (handler != null)
            {
                handler(this, args);
            }
        }
Example #2
0
        private void DoSearch()
        {
            if (StartPath != null)
            {
                TotalSize(StartPath);
                foreach (string path in StartPath)
                {
                    if (path != null)
                    {
                        DoSearch(path);
                    }
                }
            }
            SearchCompaliteArgs args = new SearchCompaliteArgs();

            InvokeSearchCompalite(args);
        }
Example #3
0
 private void DoSearch()
 {
     if (StartPath != null)
     {
         TotalSize(StartPath);
         foreach (string path in StartPath)
         {
             if (path != null) 
                 DoSearch(path);
         }
     }
     SearchCompaliteArgs args = new SearchCompaliteArgs();
     InvokeSearchCompalite(args);
 }
Example #4
0
 /// <summary>
 /// 
 /// </summary>
 /// <param name="args"></param>
 public void InvokeSearchCompalite(SearchCompaliteArgs args)
 {
     _progress.Percent = 100;
     InvokeProgressChange(_progress);
     OnSearchCompalite handler = SearchCompalite;
     if (handler != null) handler(this, args);
 }