BatchGuy.App.SettingsForm.SettingsForm_Load C# (CSharp) Method

SettingsForm_Load() private method

private SettingsForm_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void SettingsForm_Load(object sender, EventArgs e)
        {
            try
            {
                lblVersion.Text = Program.GetApplicationVersion();
                this.LoadMKVLanguageDropDownBoxes();
                this.LoadExecutables();
                this.LoadSettings();
                this.LoadControls();
                this.SetToolTips();
            }
            catch (Exception ex)
            {
                _displayErrorMessageService.DisplayError(new ErrorMessage() { DisplayMessage = "There was a problem trying to load the screen!", DisplayTitle = "Error.", Exception = ex, MethodNameWhereExceptionOccurred = MethodBase.GetCurrentMethod().Name });
            }
        }
SettingsForm