OpenDir() публичный Метод

public OpenDir ( string path ) : void
path string
Результат void
Пример #1
0
 private void MenuItem_Run_Click(object sender, RoutedEventArgs e)
 {
     signIndex = 0;
     if (wordList == null)
     {
         return;
     }
     foreach (var wordModel in wordList)
     {
         Console.WriteLine("Process:{0}/{1} {2}", wordList.IndexOf(wordModel), wordList.Count, wordModel.FullName);
         try
         {
             m_VideoProcessor.OpenDir(wordModel.FullName);
             m_VideoProcessor.ProcessSample();
         }
         catch (Exception ex)
         {
             continue;
         }
     }
     //System.Windows.Forms.Timer timer = new System.Windows.Forms.Timer();
     //timer.Interval = 1000;
     //timer.Tick += timer_Tick;
     //timer.Start();
 }