DeploymentTracker.App.Windows.AppConfigManager.LoadSettings C# (CSharp) Method

LoadSettings() private method

Loads the settings.
private LoadSettings ( ) : void
return void
        private void LoadSettings()
        {
            this.txtAppLogFolder.Text = Settings.Default.ApplicationLogPath;
            this.txtAzurePublishSettings.Text = Settings.Default.AzurePublishSettingsDownloadLink;
            this.txtDeploymentLogFolder.Text = Settings.Default.DeploymentLogPath;
            this.txtParallelTasks.Text = Settings.Default.MaxSessionsPermitted;
            this.txtNumberOfTries.Text = Settings.Default.NumberOfTries;
            this.txtTFSWorkingFolder.Text = Settings.Default.TFSWorkingPath;
            this.txtLocalDBConnection.Text = Settings.Default.DeploymentTrackerLocalDBConnectionString;
            this.txtLocalDBConnection.ReadOnly = true;
        }