Ejemplo n.º 1
0
        private void StartClicked()
        {
            if (_closed)
            {
                return;
            }

            InvokeUI(() =>
            {
                _runSeconds = 0;
                _timerRuntime.Start();
                _frmDebug.ClearConsole();
                this.lblRunTime.Visible   = true;
                this.btnStartStop.Enabled = true;
                this.btnStartStop.Text    = "Stop";
            });
        }