Example #1
0
    /// <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;
    }
Example #2
0
        /// <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;
        }