BzReader.AboutBox.AboutBox C# (CSharp) Method

AboutBox() public method

public AboutBox ( ) : System
return System
        public AboutBox()
        {
            InitializeComponent();

            //  Initialize the AboutBox to display the product information from the assembly information.
            //  Change assembly information settings for your application through either:
            //  - Project->Properties->Application->Assembly Information
            //  - AssemblyInfo.cs
            this.Text = String.Format(Properties.Resources.AboutProduct, BzReader.Properties.Resources.BzReader);
            this.labelProductName.Text = BzReader.Properties.Resources.BzReader;
            this.labelVersion.Text = String.Format(Properties.Resources.AboutVersion, AssemblyVersion);
            this.labelCopyright.Text = BzReader.Properties.Resources.ProductLicense;
            this.textBoxDescription.Text = BzReader.Properties.Resources.ProductDescription;
        }