Mosa.EmulatedDevices.Synthetic.DisplayForm.StartTimer C# (CSharp) Method

StartTimer() public method

Starts the timer.
public StartTimer ( ) : void
return void
        public void StartTimer()
        {
            timer = new Timer();
            timer.Interval = 250;
            timer.Tick += new EventHandler(Timer_Tick);
            timer.Start();
        }