Atmo.UI.DevEx.MainForm.StartWindFinder C# (CSharp) Method

StartWindFinder() private method

private StartWindFinder ( ) : void
return void
        private void StartWindFinder()
        {
            AppContext.PersistentState.PwfEnabled = true;

            pom_inverval = 60 * 60;
            timerWindFinder.Enabled = true;

            //labelControlPwsStatus.Text = "Running";
            labelControlWindFinder.SetPropertyThreadSafe(() => labelControlWindFinder.Text, RunningText);
            //simpleButtonPwsAction.Text = "Running";
            simpleButtonWindFinderAction.SetPropertyThreadSafe(() => simpleButtonWindFinderAction.Text, RunningText + " (click to stop).");
            //simpleButtonPwsAction.BackColor = Color.LightGreen;
            simpleButtonWindFinderAction.SetPropertyThreadSafe(() => simpleButtonWindFinderAction.ForeColor, ForeColor);
        }
MainForm