示例#1
0
        public Dwell()
        {
            timerDwell = new Timer();
            timerDwell.Interval = 33;
            timerDwell.Tick += new EventHandler(timerDwell_Tick);

            timerDwellLatency = new Timer();
            timerDwellLatency.Interval = DwellLatency;
            timerDwellLatency.Tick += new EventHandler(timerDwellLatency_Tick);

            buffersize_sam = (DwellTime / timerDwell.Interval);//1000 / 33 = 30

            controladorMouse = new MouseController();
        }