RadioDld.About.About_Load C# (CSharp) Method

About_Load() private method

private About_Load ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void About_Load(object sender, EventArgs e)
        {
            this.Font = SystemFonts.MessageBoxFont;

            this.Text = "About " + Application.ProductName;
            this.LabelNameAndVer.Text = Application.ProductName + " " + Application.ProductVersion;
            this.LabelCopyright.Text = new Microsoft.VisualBasic.ApplicationServices.ApplicationBase().Info.Copyright;

            UpdateCheck.CheckAvailable(this.UpdateAvailable);
        }