BatchGuy.App.SettingsForm.SettingsForm_Load C# (CSharp) 메소드

SettingsForm_Load() 개인적인 메소드

private SettingsForm_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
리턴 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