BatchGuy.App.BluRayTitleInfoForm.BluRayTitleForm_Load C# (CSharp) Méthode

BluRayTitleForm_Load() private méthode

private BluRayTitleForm_Load ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat void
        private void BluRayTitleForm_Load(object sender, EventArgs e)
        {
            try
            {
                lblVersion.Text = Program.GetApplicationVersion();
                this.SetScreenInfo();
                this.gbScreen.SetEnabled(false);
                this.SetMKVToolNixGUIControlsDefaults();
                this.SetGBMKVToolNixGUIEnabledStatus(true);
                this.DisabletxtEpisodeNumberIfCallingScreenIsCreateX264BatchFile();
                this.SettxtEpisodeNameEnabledStatus();
                this.SettxtEpisodeNumberCaptionIfRemuxForMovie();

                if (_bluRaySummaryInfo.BluRayTitleInfo != null)
                {
                    this.LoadScreen();
                    this.SetGridRowBackgroundIfUndetermindLanguage();
                    gbScreen.SetEnabled(true);
                    txtEpisodeNumber.Select();
                }
                else
                {
                    this.LoadBluRayTitleInfo();
                }
            }
            catch (Exception ex)
            {
                _displayErrorMessageService.DisplayError(new ErrorMessage() { DisplayMessage = "There was a problem loading the form!", DisplayTitle = "Error.", Exception = ex, MethodNameWhereExceptionOccurred = MethodBase.GetCurrentMethod().Name });
            }
        }
BluRayTitleInfoForm