comparison ServerMonitor/Forms/AboutForm.Designer.cs @ 20:b21318f6e3f1

About window tweaks
author Brad Greco <brad@bgreco.net>
date Thu, 30 May 2019 20:36:42 -0400
parents b3128fe10d57
children f6235dc0a8ec
comparison
equal deleted inserted replaced
19:b3128fe10d57 20:b21318f6e3f1
31 this.IconPictureBox = new System.Windows.Forms.PictureBox(); 31 this.IconPictureBox = new System.Windows.Forms.PictureBox();
32 this.NameLabel = new System.Windows.Forms.Label(); 32 this.NameLabel = new System.Windows.Forms.Label();
33 this.CopyrightLabel = new System.Windows.Forms.Label(); 33 this.CopyrightLabel = new System.Windows.Forms.Label();
34 this.HomePageLink = new System.Windows.Forms.LinkLabel(); 34 this.HomePageLink = new System.Windows.Forms.LinkLabel();
35 this.LicenseLabel = new System.Windows.Forms.Label(); 35 this.LicenseLabel = new System.Windows.Forms.Label();
36 this.LibrariesLabel = new System.Windows.Forms.Label(); 36 this.SshNetLinkLabel = new System.Windows.Forms.LinkLabel();
37 this.NAppUpdateLinkLabel = new System.Windows.Forms.LinkLabel();
37 ((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).BeginInit(); 38 ((System.ComponentModel.ISupportInitialize)(this.IconPictureBox)).BeginInit();
38 this.SuspendLayout(); 39 this.SuspendLayout();
39 // 40 //
40 // IconPictureBox 41 // IconPictureBox
41 // 42 //
57 this.NameLabel.Text = "Personal Server Monitor"; 58 this.NameLabel.Text = "Personal Server Monitor";
58 this.NameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; 59 this.NameLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
59 // 60 //
60 // CopyrightLabel 61 // CopyrightLabel
61 // 62 //
62 this.CopyrightLabel.Location = new System.Drawing.Point(12, 111); 63 this.CopyrightLabel.Location = new System.Drawing.Point(12, 109);
63 this.CopyrightLabel.Name = "CopyrightLabel"; 64 this.CopyrightLabel.Name = "CopyrightLabel";
64 this.CopyrightLabel.Size = new System.Drawing.Size(300, 20); 65 this.CopyrightLabel.Size = new System.Drawing.Size(300, 20);
65 this.CopyrightLabel.TabIndex = 2; 66 this.CopyrightLabel.TabIndex = 2;
66 this.CopyrightLabel.Text = "Copyright © 2019 Brad Greco"; 67 this.CopyrightLabel.Text = "Copyright © 2019 Brad Greco";
67 this.CopyrightLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; 68 this.CopyrightLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
68 // 69 //
69 // HomePageLink 70 // HomePageLink
70 // 71 //
71 this.HomePageLink.Location = new System.Drawing.Point(12, 131); 72 this.HomePageLink.Location = new System.Drawing.Point(12, 127);
72 this.HomePageLink.Name = "HomePageLink"; 73 this.HomePageLink.Name = "HomePageLink";
73 this.HomePageLink.Size = new System.Drawing.Size(300, 20); 74 this.HomePageLink.Size = new System.Drawing.Size(300, 20);
74 this.HomePageLink.TabIndex = 3; 75 this.HomePageLink.TabIndex = 3;
75 this.HomePageLink.TabStop = true; 76 this.HomePageLink.TabStop = true;
76 this.HomePageLink.Text = "https://www.bgreco.net/servermonitor"; 77 this.HomePageLink.Text = "https://www.bgreco.net/servermonitor";
86 this.LicenseLabel.Text = "This software is released under the GNU General Public License version 2. Complet" + 87 this.LicenseLabel.Text = "This software is released under the GNU General Public License version 2. Complet" +
87 "e source code is available at the URL above. This software comes with ABSOLUTELY" + 88 "e source code is available at the URL above. This software comes with ABSOLUTELY" +
88 " NO WARRANTY."; 89 " NO WARRANTY.";
89 this.LicenseLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; 90 this.LicenseLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
90 // 91 //
91 // LibrariesLabel 92 // SshNetLinkLabel
92 // 93 //
93 this.LibrariesLabel.Location = new System.Drawing.Point(12, 230); 94 this.SshNetLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(31, 7);
94 this.LibrariesLabel.Name = "LibrariesLabel"; 95 this.SshNetLinkLabel.Location = new System.Drawing.Point(12, 230);
95 this.LibrariesLabel.Size = new System.Drawing.Size(300, 45); 96 this.SshNetLinkLabel.Name = "SshNetLinkLabel";
96 this.LibrariesLabel.TabIndex = 5; 97 this.SshNetLinkLabel.Size = new System.Drawing.Size(300, 18);
97 this.LibrariesLabel.Text = "SSH support is provided by the SSH.NET library.\r\nProgram updates are handled by t" + 98 this.SshNetLinkLabel.TabIndex = 6;
98 "he NAppUpdate library."; 99 this.SshNetLinkLabel.TabStop = true;
99 this.LibrariesLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter; 100 this.SshNetLinkLabel.Text = "SSH support is provided by the SSH.NET library.";
101 this.SshNetLinkLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
102 this.SshNetLinkLabel.UseCompatibleTextRendering = true;
103 this.SshNetLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.SshNetLinkLabel_LinkClicked);
104 //
105 // NAppUpdateLinkLabel
106 //
107 this.NAppUpdateLinkLabel.LinkArea = new System.Windows.Forms.LinkArea(35, 10);
108 this.NAppUpdateLinkLabel.Location = new System.Drawing.Point(12, 246);
109 this.NAppUpdateLinkLabel.Name = "NAppUpdateLinkLabel";
110 this.NAppUpdateLinkLabel.Size = new System.Drawing.Size(300, 18);
111 this.NAppUpdateLinkLabel.TabIndex = 7;
112 this.NAppUpdateLinkLabel.TabStop = true;
113 this.NAppUpdateLinkLabel.Text = "Program updates are handled by the NAppUpdate library.";
114 this.NAppUpdateLinkLabel.TextAlign = System.Drawing.ContentAlignment.TopCenter;
115 this.NAppUpdateLinkLabel.UseCompatibleTextRendering = true;
116 this.NAppUpdateLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.NAppUpdateLinkLabel_LinkClicked);
100 // 117 //
101 // AboutForm 118 // AboutForm
102 // 119 //
103 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 120 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 121 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
105 this.ClientSize = new System.Drawing.Size(324, 273); 122 this.ClientSize = new System.Drawing.Size(324, 273);
106 this.Controls.Add(this.LibrariesLabel); 123 this.Controls.Add(this.NAppUpdateLinkLabel);
124 this.Controls.Add(this.SshNetLinkLabel);
107 this.Controls.Add(this.LicenseLabel); 125 this.Controls.Add(this.LicenseLabel);
108 this.Controls.Add(this.HomePageLink); 126 this.Controls.Add(this.HomePageLink);
109 this.Controls.Add(this.CopyrightLabel); 127 this.Controls.Add(this.CopyrightLabel);
110 this.Controls.Add(this.NameLabel); 128 this.Controls.Add(this.NameLabel);
111 this.Controls.Add(this.IconPictureBox); 129 this.Controls.Add(this.IconPictureBox);
125 private System.Windows.Forms.PictureBox IconPictureBox; 143 private System.Windows.Forms.PictureBox IconPictureBox;
126 private System.Windows.Forms.Label NameLabel; 144 private System.Windows.Forms.Label NameLabel;
127 private System.Windows.Forms.Label CopyrightLabel; 145 private System.Windows.Forms.Label CopyrightLabel;
128 private System.Windows.Forms.LinkLabel HomePageLink; 146 private System.Windows.Forms.LinkLabel HomePageLink;
129 private System.Windows.Forms.Label LicenseLabel; 147 private System.Windows.Forms.Label LicenseLabel;
130 private System.Windows.Forms.Label LibrariesLabel; 148 private System.Windows.Forms.LinkLabel SshNetLinkLabel;
149 private System.Windows.Forms.LinkLabel NAppUpdateLinkLabel;
131 } 150 }
132 } 151 }