示例#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();
     }
 }