Esempio n. 1
0
 private void Searcher_FoundInfo(FoundInfoEventArgs e)
 {
     if (!m_closing)
     {
         this.Invoke(FoundInfo, new object[] { e });
     }
 }
Esempio n. 2
0
 private void Searcher_FoundInfo(FoundInfoEventArgs e)
 {
     if (!m_closing)
     {
         // Invoke the method "this_FoundInfo" through a delegate,
         // so it is executed in the same thread as MainWindow:
         this.Invoke(FoundInfo, new object[] { e });
     }
 }
Esempio n. 3
0
 private void this_FoundInfo(FoundInfoEventArgs e)
 {
     // Create a new item in the results list:
     CreateResultsListItem(e.Info);
 }
Esempio n. 4
0
 private void this_FoundInfo(FoundInfoEventArgs e)
 {
     CreateResultsListItem(e.Info);
 }
Esempio n. 5
0
 private void this_FoundInfo(FoundInfoEventArgs e)
 {
     // Create a new item in the results list:
     CreateResultsListItem(e.Info, e.Name);
 }
Esempio n. 6
0
 private void Searcher_FoundInfo(FoundInfoEventArgs e)
 {
     if (!m_closing)
     {
         // Invoke the method "this_FoundInfo" through a delegate,
         // so it is executed in the same thread as MainWindow:
         this.Invoke(FoundInfo, new object[] { e });
     }
 }