Editor.Source_Files.AboutPropellerEngine.AboutPropellerEngine C# (CSharp) Method

AboutPropellerEngine() public method

public AboutPropellerEngine ( ) : System
return System
        public AboutPropellerEngine()
        {
            InitializeComponent();
            this.Text = String.Format("About {0}", AssemblyTitle);
            this.labelProductName.Text = AssemblyProduct;
            this.labelVersion.Text = String.Format("Version {0}", AssemblyVersion);
            this.labelCopyright.Text = AssemblyCopyright;
            this.labelCompanyName.Text = AssemblyCompany;
            this.textBoxDescription.Text = AssemblyDescription;
        }