/// <summary> /// Initializes a new instance of the <see cref="TobiiCalibrationRunner"/> class. /// </summary> public TobiiCalibrationRunner() { this.sleepTimer = new Timer { Interval = 1000 }; this.sleepTimer.Tick += this.HandleTimerTick; this.tobiiCalibrationForm = new TobiiCalibrationForm(); this.tobiiCalibrationForm.Load += this.TobiiCalibrationFormLoaded; }