예제 #1
0
 private void buttonRefreshStatistics_Click(object sender, EventArgs e)
 {
     foreach (Listener l in listenerList)
     {
         StatisticsSnapShot statisticsForm = new StatisticsSnapShot();
         statisticsForm.ProcessStatistics(l.GetResults());
         statisticsForm.Show();
     }
 }
예제 #2
0
파일: Form1.cs 프로젝트: vadimsu/PACK
 private void buttonRefreshStatistics_Click(object sender, EventArgs e)
 {
     foreach (Listener l in listenerList)
     {
         StatisticsSnapShot statisticsForm = new StatisticsSnapShot();
         statisticsForm.ProcessStatistics(l.GetResults());
         statisticsForm.Show();
     }
 }