ARCed.Dialogs.AboutBox.AboutBoxLoad C# (CSharp) Метод

AboutBoxLoad() приватный Метод

private AboutBoxLoad ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void AboutBoxLoad(object sender, EventArgs e)
        {
            if (this._entryAssembly == null)
            {
                this._entryAssembly = Assembly.GetEntryAssembly();
            }
            if (this._entryAssembly == null)
            {
                this._entryAssembly = Assembly.GetExecutingAssembly();
            }
            this._executingAssemblyName = Assembly.GetExecutingAssembly().GetName().Name;
            this._callingAssemblyName = Assembly.GetCallingAssembly().GetName().Name;
            try
            {
                this._entryAssemblyName = Assembly.GetEntryAssembly().GetName().Name;
            }
            catch (Exception)
            {
            }
            this._minWindowHeight = this.AppCopyrightLabel.Top + this.AppCopyrightLabel.Height + this.OKButton.Height + 30;
            this.TabPanelDetails.Visible = false;
            if (!this.MoreRichTextBox.Visible)
            {
                Height = Height - this.MoreRichTextBox.Height;
            }
        }