private void TimerDisplayForm_Load(object?sender, EventArgs e)
 {
     foreach (VisualizationChange change in VisualizationChangeFactory.ClearAll())
     {
         change.ApplyTo(this);
     }
 }
Example #2
0
 private void CompetitionStateOverview_Load(object?sender, EventArgs e)
 {
     foreach (VisualizationChange change in VisualizationChangeFactory.ClearAll())
     {
         change.ApplyTo(this);
     }
 }