Free cookie consent management tool by TermsFeed Policy Generator

source: branches/OKB/HeuristicLab.Clients.OKB-3.3/AdministrationView.Designer.cs @ 4390

Last change on this file since 4390 was 4390, checked in by swagner, 14 years ago

Worked on OKB data model and services (#1174)

File size: 16.3 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.Clients.OKB {
23  partial class AdministrationView {
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) {
35        if (components != null) components.Dispose();
36      }
37      base.Dispose(disposing);
38    }
39
40    #region Component 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      this.dataGridView1 = new System.Windows.Forms.DataGridView();
49      this.idDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
50      this.nameDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
51      this.descriptionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
52      this.algorithmClassBindingSource = new System.Windows.Forms.BindingSource(this.components);
53      this.refreshButton = new System.Windows.Forms.Button();
54      this.saveButton = new System.Windows.Forms.Button();
55      this.tabControl1 = new System.Windows.Forms.TabControl();
56      this.tabPage1 = new System.Windows.Forms.TabPage();
57      this.populateButton = new System.Windows.Forms.Button();
58      this.tabPage2 = new System.Windows.Forms.TabPage();
59      this.dataGridView2 = new System.Windows.Forms.DataGridView();
60      this.idDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
61      this.algorithmClassIdDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
62      this.platformIdDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
63      this.nameDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
64      this.descriptionDataGridViewTextBoxColumn1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
65      this.algorithmDataDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
66      this.algorithmClassDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
67      this.platformDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
68      this.algorithmBindingSource = new System.Windows.Forms.BindingSource(this.components);
69      ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
70      ((System.ComponentModel.ISupportInitialize)(this.algorithmClassBindingSource)).BeginInit();
71      this.tabControl1.SuspendLayout();
72      this.tabPage1.SuspendLayout();
73      this.tabPage2.SuspendLayout();
74      ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit();
75      ((System.ComponentModel.ISupportInitialize)(this.algorithmBindingSource)).BeginInit();
76      this.SuspendLayout();
77      //
78      // dataGridView1
79      //
80      this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81                  | System.Windows.Forms.AnchorStyles.Left)
82                  | System.Windows.Forms.AnchorStyles.Right)));
83      this.dataGridView1.AutoGenerateColumns = false;
84      this.dataGridView1.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
85      this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
86      this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
87            this.idDataGridViewTextBoxColumn1,
88            this.nameDataGridViewTextBoxColumn,
89            this.descriptionDataGridViewTextBoxColumn});
90      this.dataGridView1.DataSource = this.algorithmClassBindingSource;
91      this.dataGridView1.Location = new System.Drawing.Point(6, 6);
92      this.dataGridView1.Name = "dataGridView1";
93      this.dataGridView1.Size = new System.Drawing.Size(707, 368);
94      this.dataGridView1.TabIndex = 0;
95      this.dataGridView1.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellEndEdit);
96      this.dataGridView1.UserAddedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView1_UserAddedRow);
97      this.dataGridView1.UserDeletedRow += new System.Windows.Forms.DataGridViewRowEventHandler(this.dataGridView1_UserDeletedRow);
98      //
99      // idDataGridViewTextBoxColumn1
100      //
101      this.idDataGridViewTextBoxColumn1.DataPropertyName = "Id";
102      this.idDataGridViewTextBoxColumn1.HeaderText = "Id";
103      this.idDataGridViewTextBoxColumn1.Name = "idDataGridViewTextBoxColumn1";
104      this.idDataGridViewTextBoxColumn1.ReadOnly = true;
105      this.idDataGridViewTextBoxColumn1.Width = 41;
106      //
107      // nameDataGridViewTextBoxColumn
108      //
109      this.nameDataGridViewTextBoxColumn.DataPropertyName = "Name";
110      this.nameDataGridViewTextBoxColumn.HeaderText = "Name";
111      this.nameDataGridViewTextBoxColumn.Name = "nameDataGridViewTextBoxColumn";
112      this.nameDataGridViewTextBoxColumn.Width = 60;
113      //
114      // descriptionDataGridViewTextBoxColumn
115      //
116      this.descriptionDataGridViewTextBoxColumn.DataPropertyName = "Description";
117      this.descriptionDataGridViewTextBoxColumn.HeaderText = "Description";
118      this.descriptionDataGridViewTextBoxColumn.Name = "descriptionDataGridViewTextBoxColumn";
119      this.descriptionDataGridViewTextBoxColumn.Width = 85;
120      //
121      // algorithmClassBindingSource
122      //
123      this.algorithmClassBindingSource.DataSource = typeof(HeuristicLab.Clients.OKB.OKBAdmin.AlgorithmClass);
124      this.algorithmClassBindingSource.Sort = "";
125      //
126      // refreshButton
127      //
128      this.refreshButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
129      this.refreshButton.Location = new System.Drawing.Point(6, 380);
130      this.refreshButton.Name = "refreshButton";
131      this.refreshButton.Size = new System.Drawing.Size(75, 23);
132      this.refreshButton.TabIndex = 1;
133      this.refreshButton.Text = "&Refresh";
134      this.refreshButton.UseVisualStyleBackColor = true;
135      this.refreshButton.Click += new System.EventHandler(this.refreshButton_Click);
136      //
137      // saveButton
138      //
139      this.saveButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
140      this.saveButton.Location = new System.Drawing.Point(87, 380);
141      this.saveButton.Name = "saveButton";
142      this.saveButton.Size = new System.Drawing.Size(75, 23);
143      this.saveButton.TabIndex = 1;
144      this.saveButton.Text = "&Save";
145      this.saveButton.UseVisualStyleBackColor = true;
146      this.saveButton.Click += new System.EventHandler(this.saveButton_Click);
147      //
148      // tabControl1
149      //
150      this.tabControl1.Controls.Add(this.tabPage1);
151      this.tabControl1.Controls.Add(this.tabPage2);
152      this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
153      this.tabControl1.Location = new System.Drawing.Point(0, 0);
154      this.tabControl1.Name = "tabControl1";
155      this.tabControl1.SelectedIndex = 0;
156      this.tabControl1.Size = new System.Drawing.Size(727, 435);
157      this.tabControl1.TabIndex = 2;
158      //
159      // tabPage1
160      //
161      this.tabPage1.Controls.Add(this.dataGridView1);
162      this.tabPage1.Controls.Add(this.refreshButton);
163      this.tabPage1.Controls.Add(this.populateButton);
164      this.tabPage1.Controls.Add(this.saveButton);
165      this.tabPage1.Location = new System.Drawing.Point(4, 22);
166      this.tabPage1.Name = "tabPage1";
167      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
168      this.tabPage1.Size = new System.Drawing.Size(719, 409);
169      this.tabPage1.TabIndex = 0;
170      this.tabPage1.Text = "tabPage1";
171      this.tabPage1.UseVisualStyleBackColor = true;
172      //
173      // populateButton
174      //
175      this.populateButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
176      this.populateButton.Location = new System.Drawing.Point(168, 380);
177      this.populateButton.Name = "populateButton";
178      this.populateButton.Size = new System.Drawing.Size(75, 23);
179      this.populateButton.TabIndex = 1;
180      this.populateButton.Text = "&Populate";
181      this.populateButton.UseVisualStyleBackColor = true;
182      this.populateButton.Click += new System.EventHandler(this.populateButton_Click);
183      //
184      // tabPage2
185      //
186      this.tabPage2.Controls.Add(this.dataGridView2);
187      this.tabPage2.Location = new System.Drawing.Point(4, 22);
188      this.tabPage2.Name = "tabPage2";
189      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
190      this.tabPage2.Size = new System.Drawing.Size(719, 409);
191      this.tabPage2.TabIndex = 1;
192      this.tabPage2.Text = "tabPage2";
193      this.tabPage2.UseVisualStyleBackColor = true;
194      //
195      // dataGridView2
196      //
197      this.dataGridView2.AutoGenerateColumns = false;
198      this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
199      this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
200            this.idDataGridViewTextBoxColumn,
201            this.algorithmClassIdDataGridViewTextBoxColumn,
202            this.platformIdDataGridViewTextBoxColumn,
203            this.nameDataGridViewTextBoxColumn1,
204            this.descriptionDataGridViewTextBoxColumn1,
205            this.algorithmDataDataGridViewTextBoxColumn,
206            this.algorithmClassDataGridViewTextBoxColumn,
207            this.platformDataGridViewTextBoxColumn});
208      this.dataGridView2.DataSource = this.algorithmBindingSource;
209      this.dataGridView2.Location = new System.Drawing.Point(6, 6);
210      this.dataGridView2.Name = "dataGridView2";
211      this.dataGridView2.Size = new System.Drawing.Size(707, 344);
212      this.dataGridView2.TabIndex = 0;
213      //
214      // idDataGridViewTextBoxColumn
215      //
216      this.idDataGridViewTextBoxColumn.DataPropertyName = "Id";
217      this.idDataGridViewTextBoxColumn.HeaderText = "Id";
218      this.idDataGridViewTextBoxColumn.Name = "idDataGridViewTextBoxColumn";
219      //
220      // algorithmClassIdDataGridViewTextBoxColumn
221      //
222      this.algorithmClassIdDataGridViewTextBoxColumn.DataPropertyName = "AlgorithmClassId";
223      this.algorithmClassIdDataGridViewTextBoxColumn.HeaderText = "AlgorithmClassId";
224      this.algorithmClassIdDataGridViewTextBoxColumn.Name = "algorithmClassIdDataGridViewTextBoxColumn";
225      //
226      // platformIdDataGridViewTextBoxColumn
227      //
228      this.platformIdDataGridViewTextBoxColumn.DataPropertyName = "PlatformId";
229      this.platformIdDataGridViewTextBoxColumn.HeaderText = "PlatformId";
230      this.platformIdDataGridViewTextBoxColumn.Name = "platformIdDataGridViewTextBoxColumn";
231      //
232      // nameDataGridViewTextBoxColumn1
233      //
234      this.nameDataGridViewTextBoxColumn1.DataPropertyName = "Name";
235      this.nameDataGridViewTextBoxColumn1.HeaderText = "Name";
236      this.nameDataGridViewTextBoxColumn1.Name = "nameDataGridViewTextBoxColumn1";
237      //
238      // descriptionDataGridViewTextBoxColumn1
239      //
240      this.descriptionDataGridViewTextBoxColumn1.DataPropertyName = "Description";
241      this.descriptionDataGridViewTextBoxColumn1.HeaderText = "Description";
242      this.descriptionDataGridViewTextBoxColumn1.Name = "descriptionDataGridViewTextBoxColumn1";
243      //
244      // algorithmDataDataGridViewTextBoxColumn
245      //
246      this.algorithmDataDataGridViewTextBoxColumn.DataPropertyName = "AlgorithmData";
247      this.algorithmDataDataGridViewTextBoxColumn.HeaderText = "AlgorithmData";
248      this.algorithmDataDataGridViewTextBoxColumn.Name = "algorithmDataDataGridViewTextBoxColumn";
249      //
250      // algorithmClassDataGridViewTextBoxColumn
251      //
252      this.algorithmClassDataGridViewTextBoxColumn.DataPropertyName = "AlgorithmClass";
253      this.algorithmClassDataGridViewTextBoxColumn.HeaderText = "AlgorithmClass";
254      this.algorithmClassDataGridViewTextBoxColumn.Name = "algorithmClassDataGridViewTextBoxColumn";
255      //
256      // platformDataGridViewTextBoxColumn
257      //
258      this.platformDataGridViewTextBoxColumn.DataPropertyName = "Platform";
259      this.platformDataGridViewTextBoxColumn.HeaderText = "Platform";
260      this.platformDataGridViewTextBoxColumn.Name = "platformDataGridViewTextBoxColumn";
261      //
262      // algorithmBindingSource
263      //
264      this.algorithmBindingSource.DataSource = typeof(HeuristicLab.Clients.OKB.OKBAdmin.Algorithm);
265      //
266      // AdministrationView
267      //
268      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
269      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
270      this.Controls.Add(this.tabControl1);
271      this.Name = "AdministrationView";
272      this.Size = new System.Drawing.Size(727, 435);
273      ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
274      ((System.ComponentModel.ISupportInitialize)(this.algorithmClassBindingSource)).EndInit();
275      this.tabControl1.ResumeLayout(false);
276      this.tabPage1.ResumeLayout(false);
277      this.tabPage2.ResumeLayout(false);
278      ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit();
279      ((System.ComponentModel.ISupportInitialize)(this.algorithmBindingSource)).EndInit();
280      this.ResumeLayout(false);
281
282    }
283
284    #endregion
285
286    private System.Windows.Forms.DataGridView dataGridView1;
287    private System.Windows.Forms.Button refreshButton;
288    private System.Windows.Forms.Button saveButton;
289    private System.Windows.Forms.BindingSource algorithmClassBindingSource;
290    private System.Windows.Forms.TabControl tabControl1;
291    private System.Windows.Forms.TabPage tabPage1;
292    private System.Windows.Forms.TabPage tabPage2;
293    private System.Windows.Forms.DataGridView dataGridView2;
294    private System.Windows.Forms.DataGridViewTextBoxColumn idDataGridViewTextBoxColumn;
295    private System.Windows.Forms.DataGridViewTextBoxColumn algorithmClassIdDataGridViewTextBoxColumn;
296    private System.Windows.Forms.DataGridViewTextBoxColumn platformIdDataGridViewTextBoxColumn;
297    private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn1;
298    private System.Windows.Forms.DataGridViewTextBoxColumn descriptionDataGridViewTextBoxColumn1;
299    private System.Windows.Forms.DataGridViewTextBoxColumn algorithmDataDataGridViewTextBoxColumn;
300    private System.Windows.Forms.DataGridViewTextBoxColumn algorithmClassDataGridViewTextBoxColumn;
301    private System.Windows.Forms.DataGridViewTextBoxColumn platformDataGridViewTextBoxColumn;
302    private System.Windows.Forms.BindingSource algorithmBindingSource;
303    private System.Windows.Forms.Button populateButton;
304    private System.Windows.Forms.DataGridViewTextBoxColumn idDataGridViewTextBoxColumn1;
305    private System.Windows.Forms.DataGridViewTextBoxColumn nameDataGridViewTextBoxColumn;
306    private System.Windows.Forms.DataGridViewTextBoxColumn descriptionDataGridViewTextBoxColumn;
307
308  }
309}
Note: See TracBrowser for help on using the repository browser.