Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.PluginInfrastructure/Starter/AboutDialog.Designer.cs @ 3758

Last change on this file since 3758 was 3749, checked in by gkronber, 15 years ago

Fixed problems with .resx file. #989

File size: 15.1 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22namespace HeuristicLab.PluginInfrastructure.Starter {
23  partial class AboutDialog {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    /// <summary>
30    /// Clean up any resources being used.
31    /// </summary>
32    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
33    protected override void Dispose(bool disposing) {
34      if (disposing && (components != null)) {
35        components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Windows Form Designer generated code
41
42    /// <summary>
43    /// Required method for Designer support - do not modify
44    /// the contents of this method with the code editor.
45    /// </summary>
46    private void InitializeComponent() {
47      this.components = new System.ComponentModel.Container();
48      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutDialog));
49      this.okButton = new System.Windows.Forms.Button();
50      this.pluginListView = new System.Windows.Forms.ListView();
51      this.pluginNameColumnHeader = new System.Windows.Forms.ColumnHeader();
52      this.pluginVersionColumnHeader = new System.Windows.Forms.ColumnHeader();
53      this.pluginDescriptionColumnHeader = new System.Windows.Forms.ColumnHeader();
54      this.imageList = new System.Windows.Forms.ImageList(this.components);
55      this.pictureBox = new System.Windows.Forms.PictureBox();
56      this.label = new System.Windows.Forms.Label();
57      this.label1 = new System.Windows.Forms.Label();
58      this.label3 = new System.Windows.Forms.Label();
59      this.productTextBox = new System.Windows.Forms.TextBox();
60      this.versionTextBox = new System.Windows.Forms.TextBox();
61      this.copyrightTextBox = new System.Windows.Forms.TextBox();
62      this.pluginsGroupBox = new System.Windows.Forms.GroupBox();
63      this.licenseTextBox = new System.Windows.Forms.RichTextBox();
64      this.label2 = new System.Windows.Forms.Label();
65      this.panel1 = new System.Windows.Forms.Panel();
66      this.label4 = new System.Windows.Forms.Label();
67      this.richTextBox1 = new System.Windows.Forms.RichTextBox();
68      this.linkLabel = new System.Windows.Forms.LinkLabel();
69      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
70      this.pluginsGroupBox.SuspendLayout();
71      this.panel1.SuspendLayout();
72      this.SuspendLayout();
73      //
74      // okButton
75      //
76      this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
77      this.okButton.Location = new System.Drawing.Point(538, 13);
78      this.okButton.Name = "okButton";
79      this.okButton.Size = new System.Drawing.Size(75, 23);
80      this.okButton.TabIndex = 0;
81      this.okButton.Text = "Close";
82      this.okButton.UseVisualStyleBackColor = true;
83      this.okButton.Click += new System.EventHandler(this.okButton_Click);
84      //
85      // pluginListView
86      //
87      this.pluginListView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
88                  | System.Windows.Forms.AnchorStyles.Left)
89                  | System.Windows.Forms.AnchorStyles.Right)));
90      this.pluginListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
91            this.pluginNameColumnHeader,
92            this.pluginVersionColumnHeader,
93            this.pluginDescriptionColumnHeader});
94      this.pluginListView.Location = new System.Drawing.Point(6, 19);
95      this.pluginListView.Name = "pluginListView";
96      this.pluginListView.ShowGroups = false;
97      this.pluginListView.Size = new System.Drawing.Size(589, 201);
98      this.pluginListView.SmallImageList = this.imageList;
99      this.pluginListView.Sorting = System.Windows.Forms.SortOrder.Ascending;
100      this.pluginListView.TabIndex = 1;
101      this.pluginListView.UseCompatibleStateImageBehavior = false;
102      this.pluginListView.View = System.Windows.Forms.View.Details;
103      this.pluginListView.ItemActivate += new System.EventHandler(this.pluginListView_ItemActivate);
104      //
105      // pluginNameColumnHeader
106      //
107      this.pluginNameColumnHeader.Text = "Name";
108      //
109      // pluginVersionColumnHeader
110      //
111      this.pluginVersionColumnHeader.Text = "Version";
112      //
113      // pluginDescriptionColumnHeader
114      //
115      this.pluginDescriptionColumnHeader.Text = "Description";
116      //
117      // imageList
118      //
119      this.imageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit;
120      this.imageList.ImageSize = new System.Drawing.Size(16, 16);
121      this.imageList.TransparentColor = System.Drawing.Color.Transparent;
122      //
123      // pictureBox
124      //
125      this.pictureBox.Location = new System.Drawing.Point(12, 12);
126      this.pictureBox.Name = "pictureBox";
127      this.pictureBox.Size = new System.Drawing.Size(165, 161);
128      this.pictureBox.TabIndex = 2;
129      this.pictureBox.TabStop = false;
130      //
131      // label
132      //
133      this.label.AutoSize = true;
134      this.label.Location = new System.Drawing.Point(183, 12);
135      this.label.Name = "label";
136      this.label.Size = new System.Drawing.Size(47, 13);
137      this.label.TabIndex = 3;
138      this.label.Text = "Product:";
139      //
140      // label1
141      //
142      this.label1.AutoSize = true;
143      this.label1.Location = new System.Drawing.Point(183, 31);
144      this.label1.Name = "label1";
145      this.label1.Size = new System.Drawing.Size(45, 13);
146      this.label1.TabIndex = 4;
147      this.label1.Text = "Version:";
148      //
149      // label3
150      //
151      this.label3.AutoSize = true;
152      this.label3.Location = new System.Drawing.Point(183, 50);
153      this.label3.Name = "label3";
154      this.label3.Size = new System.Drawing.Size(54, 13);
155      this.label3.TabIndex = 6;
156      this.label3.Text = "Copyright:";
157      //
158      // productTextBox
159      //
160      this.productTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
161      this.productTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
162      this.productTextBox.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
163      this.productTextBox.Location = new System.Drawing.Point(258, 12);
164      this.productTextBox.Name = "productTextBox";
165      this.productTextBox.ReadOnly = true;
166      this.productTextBox.Size = new System.Drawing.Size(355, 13);
167      this.productTextBox.TabIndex = 7;
168      this.productTextBox.Text = "HeuristicLab";
169      //
170      // versionTextBox
171      //
172      this.versionTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
173      this.versionTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
174      this.versionTextBox.Location = new System.Drawing.Point(258, 31);
175      this.versionTextBox.Name = "versionTextBox";
176      this.versionTextBox.ReadOnly = true;
177      this.versionTextBox.Size = new System.Drawing.Size(355, 13);
178      this.versionTextBox.TabIndex = 8;
179      this.versionTextBox.Text = "1.0";
180      //
181      // copyrightTextBox
182      //
183      this.copyrightTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
184      this.copyrightTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
185      this.copyrightTextBox.Location = new System.Drawing.Point(258, 50);
186      this.copyrightTextBox.Name = "copyrightTextBox";
187      this.copyrightTextBox.ReadOnly = true;
188      this.copyrightTextBox.Size = new System.Drawing.Size(355, 13);
189      this.copyrightTextBox.TabIndex = 9;
190      this.copyrightTextBox.Text = "(C)";
191      //
192      // pluginsGroupBox
193      //
194      this.pluginsGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
195                  | System.Windows.Forms.AnchorStyles.Left)
196                  | System.Windows.Forms.AnchorStyles.Right)));
197      this.pluginsGroupBox.Controls.Add(this.pluginListView);
198      this.pluginsGroupBox.Location = new System.Drawing.Point(12, 306);
199      this.pluginsGroupBox.Name = "pluginsGroupBox";
200      this.pluginsGroupBox.Size = new System.Drawing.Size(601, 226);
201      this.pluginsGroupBox.TabIndex = 10;
202      this.pluginsGroupBox.TabStop = false;
203      this.pluginsGroupBox.Text = "Plugins";
204      //
205      // licenseTextBox
206      //
207      this.licenseTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
208                  | System.Windows.Forms.AnchorStyles.Right)));
209      this.licenseTextBox.BackColor = System.Drawing.SystemColors.HighlightText;
210      this.licenseTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
211      this.licenseTextBox.Location = new System.Drawing.Point(186, 115);
212      this.licenseTextBox.Name = "licenseTextBox";
213      this.licenseTextBox.ReadOnly = true;
214      this.licenseTextBox.Size = new System.Drawing.Size(427, 185);
215      this.licenseTextBox.TabIndex = 11;
216      this.licenseTextBox.Text = "License Text";
217      this.licenseTextBox.WordWrap = false;
218      this.licenseTextBox.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.licenseTextBox_LinkClicked);
219      //
220      // label2
221      //
222      this.label2.AutoSize = true;
223      this.label2.Location = new System.Drawing.Point(183, 69);
224      this.label2.Name = "label2";
225      this.label2.Size = new System.Drawing.Size(49, 13);
226      this.label2.TabIndex = 12;
227      this.label2.Text = "Website:";
228      //
229      // panel1
230      //
231      this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
232                  | System.Windows.Forms.AnchorStyles.Right)));
233      this.panel1.BackColor = System.Drawing.SystemColors.Control;
234      this.panel1.Controls.Add(this.okButton);
235      this.panel1.Location = new System.Drawing.Point(0, 538);
236      this.panel1.Name = "panel1";
237      this.panel1.Size = new System.Drawing.Size(626, 48);
238      this.panel1.TabIndex = 14;
239      //
240      // label4
241      //
242      this.label4.AutoSize = true;
243      this.label4.Location = new System.Drawing.Point(183, 88);
244      this.label4.Name = "label4";
245      this.label4.Size = new System.Drawing.Size(47, 13);
246      this.label4.TabIndex = 15;
247      this.label4.Text = "Contact:";
248      //
249      // richTextBox1
250      //
251      this.richTextBox1.BackColor = System.Drawing.SystemColors.HighlightText;
252      this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
253      this.richTextBox1.Location = new System.Drawing.Point(258, 88);
254      this.richTextBox1.Multiline = false;
255      this.richTextBox1.Name = "richTextBox1";
256      this.richTextBox1.ReadOnly = true;
257      this.richTextBox1.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.None;
258      this.richTextBox1.Size = new System.Drawing.Size(355, 13);
259      this.richTextBox1.TabIndex = 16;
260      this.richTextBox1.Text = "support@heuristiclab.com";
261      //
262      // linkLabel
263      //
264      this.linkLabel.AutoSize = true;
265      this.linkLabel.Location = new System.Drawing.Point(255, 69);
266      this.linkLabel.Name = "linkLabel";
267      this.linkLabel.Size = new System.Drawing.Size(135, 13);
268      this.linkLabel.TabIndex = 17;
269      this.linkLabel.TabStop = true;
270      this.linkLabel.Text = "http://dev.heuristiclab.com";
271      this.linkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel_LinkClicked);
272      //
273      // AboutDialog
274      //
275      this.AcceptButton = this.okButton;
276      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
277      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
278      this.BackColor = System.Drawing.SystemColors.Window;
279      this.ClientSize = new System.Drawing.Size(625, 586);
280      this.Controls.Add(this.linkLabel);
281      this.Controls.Add(this.richTextBox1);
282      this.Controls.Add(this.label4);
283      this.Controls.Add(this.panel1);
284      this.Controls.Add(this.label2);
285      this.Controls.Add(this.licenseTextBox);
286      this.Controls.Add(this.pluginsGroupBox);
287      this.Controls.Add(this.copyrightTextBox);
288      this.Controls.Add(this.versionTextBox);
289      this.Controls.Add(this.productTextBox);
290      this.Controls.Add(this.label3);
291      this.Controls.Add(this.label1);
292      this.Controls.Add(this.label);
293      this.Controls.Add(this.pictureBox);
294      this.Icon = HeuristicLab.PluginInfrastructure.Resources.HeuristicLab;
295      this.MaximizeBox = false;
296      this.MinimizeBox = false;
297      this.Name = "AboutDialog";
298      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
299      this.Text = "About HeuristicLab";
300      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
301      this.pluginsGroupBox.ResumeLayout(false);
302      this.panel1.ResumeLayout(false);
303      this.ResumeLayout(false);
304      this.PerformLayout();
305
306    }
307
308    #endregion
309
310    private System.Windows.Forms.Button okButton;
311    private System.Windows.Forms.ListView pluginListView;
312    private System.Windows.Forms.ImageList imageList;
313    private System.Windows.Forms.ColumnHeader pluginNameColumnHeader;
314    private System.Windows.Forms.ColumnHeader pluginVersionColumnHeader;
315    private System.Windows.Forms.ColumnHeader pluginDescriptionColumnHeader;
316    private System.Windows.Forms.PictureBox pictureBox;
317    private System.Windows.Forms.Label label;
318    private System.Windows.Forms.Label label1;
319    private System.Windows.Forms.Label label3;
320    private System.Windows.Forms.TextBox productTextBox;
321    private System.Windows.Forms.TextBox versionTextBox;
322    private System.Windows.Forms.TextBox copyrightTextBox;
323    private System.Windows.Forms.GroupBox pluginsGroupBox;
324    private System.Windows.Forms.RichTextBox licenseTextBox;
325    private System.Windows.Forms.Label label2;
326    private System.Windows.Forms.Panel panel1;
327    private System.Windows.Forms.Label label4;
328    private System.Windows.Forms.RichTextBox richTextBox1;
329    private System.Windows.Forms.LinkLabel linkLabel;
330  }
331}
Note: See TracBrowser for help on using the repository browser.