private void ShowStatisticsForm()
 {
     if (statisticsForm != null)
     {
         statisticsForm.Activate();
     }
     else
     {
         statisticsForm = new StatisticsForm(controller);
         statisticsForm.Show();
         statisticsForm.FormClosed += OnStatisticsFormClosed;
     }
 }