Azavea.NijPredictivePolicing.AcsAlchemistGui.AboutBox1.AboutBox1 C# (CSharp) Method

AboutBox1() public method

public AboutBox1 ( ) : System
return System
        public AboutBox1()
        {
            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;

            this.labelCompanyName.LinkBehavior = LinkBehavior.HoverUnderline;
            labelCompanyName.Links.Remove(labelCompanyName.Links[0]);
            labelCompanyName.Links.Add(0, labelCompanyName.Text.Length + 2, "http://www.azavea.com");

            this.linkLabel1.LinkBehavior = LinkBehavior.HoverUnderline;
            linkLabel1.Links.Remove(linkLabel1.Links[0]);
            linkLabel1.Links.Add(0, linkLabel1.Text.Length + 2, "http://www.temple.edu/cj/cscs/");
        }