1 | #region License Information
|
---|
2 | /* HeuristicLab
|
---|
3 | * Copyright (C) 2002-2008 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 |
|
---|
22 | namespace HeuristicLab.PluginInfrastructure.GUI {
|
---|
23 | partial class AboutBox {
|
---|
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 | protected override void Dispose(bool disposing) {
|
---|
33 | if(disposing && (components != null)) {
|
---|
34 | components.Dispose();
|
---|
35 | }
|
---|
36 | base.Dispose(disposing);
|
---|
37 | }
|
---|
38 |
|
---|
39 | #region Windows Form Designer generated code
|
---|
40 |
|
---|
41 | /// <summary>
|
---|
42 | /// Required method for Designer support - do not modify
|
---|
43 | /// the contents of this method with the code editor.
|
---|
44 | /// </summary>
|
---|
45 | private void InitializeComponent() {
|
---|
46 | this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
|
---|
47 | this.logoPictureBox = new System.Windows.Forms.PictureBox();
|
---|
48 | this.labelProductName = new System.Windows.Forms.Label();
|
---|
49 | this.labelVersion = new System.Windows.Forms.Label();
|
---|
50 | this.labelCopyright = new System.Windows.Forms.Label();
|
---|
51 | this.labelCompanyName = new System.Windows.Forms.Label();
|
---|
52 | this.textBoxDescription = new System.Windows.Forms.TextBox();
|
---|
53 | this.okButton = new System.Windows.Forms.Button();
|
---|
54 | this.tableLayoutPanel.SuspendLayout();
|
---|
55 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit();
|
---|
56 | this.SuspendLayout();
|
---|
57 | //
|
---|
58 | // tableLayoutPanel
|
---|
59 | //
|
---|
60 | this.tableLayoutPanel.ColumnCount = 2;
|
---|
61 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F));
|
---|
62 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F));
|
---|
63 | this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0);
|
---|
64 | this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0);
|
---|
65 | this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1);
|
---|
66 | this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2);
|
---|
67 | this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3);
|
---|
68 | this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4);
|
---|
69 | this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5);
|
---|
70 | this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
71 | this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9);
|
---|
72 | this.tableLayoutPanel.Name = "tableLayoutPanel";
|
---|
73 | this.tableLayoutPanel.RowCount = 6;
|
---|
74 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
---|
75 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
---|
76 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
---|
77 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
---|
78 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
|
---|
79 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F));
|
---|
80 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
81 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
82 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
83 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
84 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
85 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
|
---|
86 | this.tableLayoutPanel.Size = new System.Drawing.Size(482, 250);
|
---|
87 | this.tableLayoutPanel.TabIndex = 0;
|
---|
88 | //
|
---|
89 | // logoPictureBox
|
---|
90 | //
|
---|
91 | this.logoPictureBox.Image = global::HeuristicLab.PluginInfrastructure.GUI.Properties.Resources.Logo_gray;
|
---|
92 | this.logoPictureBox.Location = new System.Drawing.Point(3, 3);
|
---|
93 | this.logoPictureBox.Name = "logoPictureBox";
|
---|
94 | this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6);
|
---|
95 | this.logoPictureBox.Size = new System.Drawing.Size(150, 150);
|
---|
96 | this.logoPictureBox.TabIndex = 12;
|
---|
97 | this.logoPictureBox.TabStop = false;
|
---|
98 | //
|
---|
99 | // labelProductName
|
---|
100 | //
|
---|
101 | this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
102 | this.labelProductName.Location = new System.Drawing.Point(165, 0);
|
---|
103 | this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
|
---|
104 | this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17);
|
---|
105 | this.labelProductName.Name = "labelProductName";
|
---|
106 | this.labelProductName.Size = new System.Drawing.Size(314, 17);
|
---|
107 | this.labelProductName.TabIndex = 19;
|
---|
108 | this.labelProductName.Text = "Product Name";
|
---|
109 | this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
110 | //
|
---|
111 | // labelVersion
|
---|
112 | //
|
---|
113 | this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
114 | this.labelVersion.Location = new System.Drawing.Point(165, 25);
|
---|
115 | this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
|
---|
116 | this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17);
|
---|
117 | this.labelVersion.Name = "labelVersion";
|
---|
118 | this.labelVersion.Size = new System.Drawing.Size(314, 17);
|
---|
119 | this.labelVersion.TabIndex = 0;
|
---|
120 | this.labelVersion.Text = "Version";
|
---|
121 | this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
122 | //
|
---|
123 | // labelCopyright
|
---|
124 | //
|
---|
125 | this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
126 | this.labelCopyright.Location = new System.Drawing.Point(165, 50);
|
---|
127 | this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
|
---|
128 | this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17);
|
---|
129 | this.labelCopyright.Name = "labelCopyright";
|
---|
130 | this.labelCopyright.Size = new System.Drawing.Size(314, 17);
|
---|
131 | this.labelCopyright.TabIndex = 21;
|
---|
132 | this.labelCopyright.Text = "Copyright";
|
---|
133 | this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
134 | //
|
---|
135 | // labelCompanyName
|
---|
136 | //
|
---|
137 | this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
138 | this.labelCompanyName.Location = new System.Drawing.Point(165, 75);
|
---|
139 | this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0);
|
---|
140 | this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17);
|
---|
141 | this.labelCompanyName.Name = "labelCompanyName";
|
---|
142 | this.labelCompanyName.Size = new System.Drawing.Size(314, 17);
|
---|
143 | this.labelCompanyName.TabIndex = 22;
|
---|
144 | this.labelCompanyName.Text = "Company Name";
|
---|
145 | this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
---|
146 | //
|
---|
147 | // textBoxDescription
|
---|
148 | //
|
---|
149 | this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill;
|
---|
150 | this.textBoxDescription.Location = new System.Drawing.Point(165, 103);
|
---|
151 | this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3);
|
---|
152 | this.textBoxDescription.Multiline = true;
|
---|
153 | this.textBoxDescription.Name = "textBoxDescription";
|
---|
154 | this.textBoxDescription.ReadOnly = true;
|
---|
155 | this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
---|
156 | this.textBoxDescription.Size = new System.Drawing.Size(314, 119);
|
---|
157 | this.textBoxDescription.TabIndex = 23;
|
---|
158 | this.textBoxDescription.TabStop = false;
|
---|
159 | this.textBoxDescription.Text = "Description";
|
---|
160 | //
|
---|
161 | // okButton
|
---|
162 | //
|
---|
163 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
164 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
---|
165 | this.okButton.Location = new System.Drawing.Point(404, 228);
|
---|
166 | this.okButton.Name = "okButton";
|
---|
167 | this.okButton.Size = new System.Drawing.Size(75, 19);
|
---|
168 | this.okButton.TabIndex = 24;
|
---|
169 | this.okButton.Text = "&OK";
|
---|
170 | //
|
---|
171 | // AboutBox
|
---|
172 | //
|
---|
173 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
174 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
175 | this.ClientSize = new System.Drawing.Size(500, 268);
|
---|
176 | this.Controls.Add(this.tableLayoutPanel);
|
---|
177 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
---|
178 | this.MaximizeBox = false;
|
---|
179 | this.MinimizeBox = false;
|
---|
180 | this.Name = "AboutBox";
|
---|
181 | this.Padding = new System.Windows.Forms.Padding(9);
|
---|
182 | this.ShowIcon = false;
|
---|
183 | this.ShowInTaskbar = false;
|
---|
184 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
---|
185 | this.Text = "AboutBox";
|
---|
186 | this.tableLayoutPanel.ResumeLayout(false);
|
---|
187 | this.tableLayoutPanel.PerformLayout();
|
---|
188 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit();
|
---|
189 | this.ResumeLayout(false);
|
---|
190 |
|
---|
191 | }
|
---|
192 |
|
---|
193 | #endregion
|
---|
194 |
|
---|
195 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
|
---|
196 | private System.Windows.Forms.PictureBox logoPictureBox;
|
---|
197 | private System.Windows.Forms.Label labelProductName;
|
---|
198 | private System.Windows.Forms.Label labelVersion;
|
---|
199 | private System.Windows.Forms.Label labelCopyright;
|
---|
200 | private System.Windows.Forms.Label labelCompanyName;
|
---|
201 | private System.Windows.Forms.TextBox textBoxDescription;
|
---|
202 | private System.Windows.Forms.Button okButton;
|
---|
203 | }
|
---|
204 | }
|
---|