-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathFormAbout.Designer.cs
252 lines (246 loc) · 12.8 KB
/
FormAbout.Designer.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
namespace GitForce
{
partial class FormAbout
{
/// <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.btOK = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.labelVersion = new System.Windows.Forms.Label();
this.textLic = new System.Windows.Forms.TextBox();
this.labelCopyright = new System.Windows.Forms.Label();
this.linkGPL = new System.Windows.Forms.LinkLabel();
this.labelBuild = new System.Windows.Forms.Label();
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.linkBaltazarStudios = new System.Windows.Forms.LinkLabel();
this.label5 = new System.Windows.Forms.Label();
this.btCopyEmail = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.labelNewVersionAvailable = new System.Windows.Forms.Label();
this.btDownload = new System.Windows.Forms.Button();
this.groupBox1.SuspendLayout();
this.SuspendLayout();
//
// btOK
//
this.btOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btOK.DialogResult = System.Windows.Forms.DialogResult.OK;
this.btOK.Location = new System.Drawing.Point(359, 299);
this.btOK.Name = "btOK";
this.btOK.Size = new System.Drawing.Size(75, 23);
this.btOK.TabIndex = 0;
this.btOK.Text = "OK";
this.btOK.UseVisualStyleBackColor = true;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label1.Location = new System.Drawing.Point(12, 9);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(137, 16);
this.label1.TabIndex = 2;
this.label1.Text = "A GIT Visual Client";
//
// labelVersion
//
this.labelVersion.AutoSize = true;
this.labelVersion.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelVersion.Location = new System.Drawing.Point(12, 37);
this.labelVersion.Name = "labelVersion";
this.labelVersion.Size = new System.Drawing.Size(53, 13);
this.labelVersion.TabIndex = 3;
this.labelVersion.Text = "Version:";
//
// textLic
//
this.textLic.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.textLic.Location = new System.Drawing.Point(12, 164);
this.textLic.Multiline = true;
this.textLic.Name = "textLic";
this.textLic.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textLic.Size = new System.Drawing.Size(422, 129);
this.textLic.TabIndex = 4;
//
// labelCopyright
//
this.labelCopyright.Location = new System.Drawing.Point(6, 20);
this.labelCopyright.Name = "labelCopyright";
this.labelCopyright.Size = new System.Drawing.Size(309, 13);
this.labelCopyright.TabIndex = 5;
this.labelCopyright.Text = "Written by Goran Devic";
//
// linkGPL
//
this.linkGPL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.linkGPL.AutoSize = true;
this.linkGPL.Location = new System.Drawing.Point(406, 12);
this.linkGPL.Name = "linkGPL";
this.linkGPL.Size = new System.Drawing.Size(28, 13);
this.linkGPL.TabIndex = 6;
this.linkGPL.TabStop = true;
this.linkGPL.Tag = "";
this.linkGPL.Text = "GPL";
this.linkGPL.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkGplClicked);
//
// labelBuild
//
this.labelBuild.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.labelBuild.AutoSize = true;
this.labelBuild.Location = new System.Drawing.Point(237, 37);
this.labelBuild.Name = "labelBuild";
this.labelBuild.Size = new System.Drawing.Size(30, 13);
this.labelBuild.TabIndex = 7;
this.labelBuild.Text = "Build";
//
// groupBox1
//
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.groupBox1.Controls.Add(this.linkBaltazarStudios);
this.groupBox1.Controls.Add(this.label5);
this.groupBox1.Controls.Add(this.btCopyEmail);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.labelCopyright);
this.groupBox1.Location = new System.Drawing.Point(12, 62);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(422, 96);
this.groupBox1.TabIndex = 8;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "Contact information";
//
// linkBaltazarStudios
//
this.linkBaltazarStudios.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.linkBaltazarStudios.AutoSize = true;
this.linkBaltazarStudios.Location = new System.Drawing.Point(289, 20);
this.linkBaltazarStudios.Name = "linkBaltazarStudios";
this.linkBaltazarStudios.Size = new System.Drawing.Size(127, 13);
this.linkBaltazarStudios.TabIndex = 13;
this.linkBaltazarStudios.TabStop = true;
this.linkBaltazarStudios.Text = "www.baltazarstudios.com";
this.linkBaltazarStudios.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.LinkBaltazarStudiosLinkClicked);
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("Bitstream Vera Sans Mono", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.label5.Location = new System.Drawing.Point(6, 72);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(182, 13);
this.label5.TabIndex = 12;
this.label5.Text = "[email protected]";
//
// btCopyEmail
//
this.btCopyEmail.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btCopyEmail.Location = new System.Drawing.Point(347, 67);
this.btCopyEmail.Name = "btCopyEmail";
this.btCopyEmail.Size = new System.Drawing.Size(69, 23);
this.btCopyEmail.TabIndex = 8;
this.btCopyEmail.Text = "Copy Email";
this.btCopyEmail.UseVisualStyleBackColor = true;
this.btCopyEmail.Click += new System.EventHandler(this.BtCopyEmailClick);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(6, 46);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(265, 13);
this.label2.TabIndex = 6;
this.label2.Text = "For comments, suggestions or bug reports, email me at:";
//
// labelNewVersionAvailable
//
this.labelNewVersionAvailable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.labelNewVersionAvailable.AutoSize = true;
this.labelNewVersionAvailable.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.labelNewVersionAvailable.ForeColor = System.Drawing.Color.Brown;
this.labelNewVersionAvailable.Location = new System.Drawing.Point(12, 304);
this.labelNewVersionAvailable.Name = "labelNewVersionAvailable";
this.labelNewVersionAvailable.Size = new System.Drawing.Size(226, 13);
this.labelNewVersionAvailable.TabIndex = 0;
this.labelNewVersionAvailable.Text = "A new version of GitForce is available!";
//
// btDownload
//
this.btDownload.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btDownload.Location = new System.Drawing.Point(281, 299);
this.btDownload.Name = "btDownload";
this.btDownload.Size = new System.Drawing.Size(69, 23);
this.btDownload.TabIndex = 1;
this.btDownload.Text = "Download";
this.btDownload.UseVisualStyleBackColor = true;
this.btDownload.Click += new System.EventHandler(this.DownloadClick);
//
// FormAbout
//
this.AcceptButton = this.btOK;
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btOK;
this.ClientSize = new System.Drawing.Size(446, 334);
this.Controls.Add(this.btDownload);
this.Controls.Add(this.labelNewVersionAvailable);
this.Controls.Add(this.groupBox1);
this.Controls.Add(this.labelBuild);
this.Controls.Add(this.textLic);
this.Controls.Add(this.labelVersion);
this.Controls.Add(this.label1);
this.Controls.Add(this.btOK);
this.Controls.Add(this.linkGPL);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.MinimumSize = new System.Drawing.Size(432, 312);
this.Name = "FormAbout";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.Text = "About GitForce";
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.FormAboutFormClosing);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btOK;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label labelVersion;
private System.Windows.Forms.TextBox textLic;
private System.Windows.Forms.Label labelCopyright;
private System.Windows.Forms.LinkLabel linkGPL;
private System.Windows.Forms.Label labelBuild;
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Button btCopyEmail;
private System.Windows.Forms.Button btDownload;
private System.Windows.Forms.Label labelNewVersionAvailable;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.LinkLabel linkBaltazarStudios;
}
}