TPConfAddin.AboutBox.AboutBox C# (CSharp) Method

AboutBox() public method

public AboutBox ( ) : System
return System
        public AboutBox()
        {
            InitializeComponent();
            this.Text = String.Format("{0} {1}", GlobalResourceClass.getMsg("BTN_ABOUT"), AssemblyTitle);
            this.labelProductName.Text = String.Format("{0}: {1}", GlobalResourceClass.getMsg("BTN_PRODUCT"), AssemblyProduct);
            this.labelVersion.Text = String.Format("{0}: {1}",GlobalResourceClass.getMsg("BTN_VERSION"), ThisAddIn.g_AccountInfo.strVersion);
            this.labelCopyright.Text = String.Format("{0}: {1}", GlobalResourceClass.getMsg("BTN_COPY_RIGHT"), AssemblyCopyright);
            this.labelCompanyName.Text = String.Format("{0}: {1}", GlobalResourceClass.getMsg("BTN_COMPANY_NAME"), AssemblyCompany);
            //this.textBoxDescription.Text = AssemblyDescription;
        }