Mercurial > servermonitor
diff ServerMonitor/Forms/AboutForm.Designer.cs @ 19:b3128fe10d57
Add About form and license.
author | Brad Greco <brad@bgreco.net> |
---|---|
date | Wed, 29 May 2019 20:18:37 -0400 |
parents | |
children | b21318f6e3f1 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ServerMonitor/Forms/AboutForm.Designer.cs Wed May 29 20:18:37 2019 -0400 @@ -0,0 +1,132 @@ +namespace ServerMonitorApp +{ + partial class AboutForm + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// <summary> + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// </summary> + private void InitializeComponent() + { + this.IconPictureBox = new System.Windows.Forms.PictureBox(); + this.NameLabel = new System.Windows.Forms.Label(); + this.CopyrightLabel = new System.Windows.Forms.Label(); + this.HomePageLink = new System.Windows.Forms.LinkLabel(); + this.LicenseLabel = new System.Windows.Forms.Label(); + this.LibrariesLabel = new System.Windows.Forms.Label(); + ((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).BeginInit(); + this.SuspendLayout(); + // + // IconPictureBox + // + this.IconPictureBox.Anchor = System.Windows.Forms.AnchorStyles.Top; + this.IconPictureBox.Image = global::ServerMonitorApp.Properties.Resources.icon_png; + this.IconPictureBox.Location = new System.Drawing.Point(130, 12); + this.IconPictureBox.Name = "IconPictureBox"; + this.IconPictureBox.Size = new System.Drawing.Size(64, 64); + this.IconPictureBox.TabIndex = 0; + this.IconPictureBox.TabStop = false; + // + // NameLabel + // + this.NameLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.NameLabel.Location = new System.Drawing.Point(12, 91); + this.NameLabel.Name = "NameLabel"; + this.NameLabel.Size = new System.Drawing.Size(300, 20); + this.NameLabel.TabIndex = 1; + this.NameLabel.Text = "Personal Server Monitor"; + this.NameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // CopyrightLabel + // + this.CopyrightLabel.Location = new System.Drawing.Point(12, 111); + this.CopyrightLabel.Name = "CopyrightLabel"; + this.CopyrightLabel.Size = new System.Drawing.Size(300, 20); + this.CopyrightLabel.TabIndex = 2; + this.CopyrightLabel.Text = "Copyright © 2019 Brad Greco"; + this.CopyrightLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // HomePageLink + // + this.HomePageLink.Location = new System.Drawing.Point(12, 131); + this.HomePageLink.Name = "HomePageLink"; + this.HomePageLink.Size = new System.Drawing.Size(300, 20); + this.HomePageLink.TabIndex = 3; + this.HomePageLink.TabStop = true; + this.HomePageLink.Text = "https://www.bgreco.net/servermonitor"; + this.HomePageLink.TextAlign = System.Drawing.ContentAlignment.TopCenter; + this.HomePageLink.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.HomePageLink_LinkClicked); + // + // LicenseLabel + // + this.LicenseLabel.Location = new System.Drawing.Point(12, 163); + this.LicenseLabel.Name = "LicenseLabel"; + this.LicenseLabel.Size = new System.Drawing.Size(300, 54); + this.LicenseLabel.TabIndex = 4; + this.LicenseLabel.Text = "This software is released under the GNU General Public License version 2. Complet" + + "e source code is available at the URL above. This software comes with ABSOLUTELY" + + " NO WARRANTY."; + this.LicenseLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // LibrariesLabel + // + this.LibrariesLabel.Location = new System.Drawing.Point(12, 230); + this.LibrariesLabel.Name = "LibrariesLabel"; + this.LibrariesLabel.Size = new System.Drawing.Size(300, 45); + this.LibrariesLabel.TabIndex = 5; + this.LibrariesLabel.Text = "SSH support is provided by the SSH.NET library.\r\nProgram updates are handled by t" + + "he NAppUpdate library."; + this.LibrariesLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; + // + // AboutForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(324, 273); + this.Controls.Add(this.LibrariesLabel); + this.Controls.Add(this.LicenseLabel); + this.Controls.Add(this.HomePageLink); + this.Controls.Add(this.CopyrightLabel); + this.Controls.Add(this.NameLabel); + this.Controls.Add(this.IconPictureBox); + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle; + this.MaximizeBox = false; + this.MinimizeBox = false; + this.Name = "AboutForm"; + this.Text = "About"; + this.Load += new System.EventHandler(this.AboutForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox IconPictureBox; + private System.Windows.Forms.Label NameLabel; + private System.Windows.Forms.Label CopyrightLabel; + private System.Windows.Forms.LinkLabel HomePageLink; + private System.Windows.Forms.Label LicenseLabel; + private System.Windows.Forms.Label LibrariesLabel; + } +} \ No newline at end of file