Free cookie consent management tool by TermsFeed Policy Generator

source: branches/PerformanceComparison/HeuristicLab.OptimizationExpertSystem.Views/3.3/ExpertSystemView.Designer.cs @ 13485

Last change on this file since 13485 was 13485, checked in by abeham, 8 years ago

#2457:

  • fixed bugs in iterated sampling view
  • worked on download runs from okb feature
File size: 22.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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.OptimizationExpertSystem.Views {
23  partial class ExpertSystemView {
24    /// <summary>
25    /// Required designer variable.
26    /// </summary>
27    private System.ComponentModel.IContainer components = null;
28
29    #region Component Designer generated code
30
31    /// <summary>
32    /// Required method for Designer support - do not modify
33    /// the contents of this method with the code editor.
34    /// </summary>
35    private void InitializeComponent() {
36      System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExpertSystemView));
37      this.evaluationsLimitabel = new System.Windows.Forms.Label();
38      this.maxEvaluationsTextBox = new System.Windows.Forms.TextBox();
39      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
40      this.problemTabPage = new System.Windows.Forms.TabPage();
41      this.problemViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
42      this.openProblemButton = new System.Windows.Forms.Button();
43      this.newProblemButton = new System.Windows.Forms.Button();
44      this.algorithmTabPage = new System.Windows.Forms.TabPage();
45      this.algorithmViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
46      this.algorithmSuggestionLabel = new System.Windows.Forms.Label();
47      this.suggestedInstancesComboBox = new System.Windows.Forms.ComboBox();
48      this.runsTabPage = new System.Windows.Forms.TabPage();
49      this.okbTabPage = new System.Windows.Forms.TabPage();
50      this.algorithmInstancesViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
51      this.problemInstancesTabPage = new System.Windows.Forms.TabPage();
52      this.problemInstancesView = new HeuristicLab.MainForm.WindowsForms.ViewHost();
53      this.instancesDropPanel = new System.Windows.Forms.Panel();
54      this.dragFLAHereLabel = new System.Windows.Forms.Label();
55      this.refreshMapButton = new System.Windows.Forms.Button();
56      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
57      this.okbDownloadButton = new System.Windows.Forms.Button();
58      this.runsView = new HeuristicLab.Optimization.Views.RunCollectionView();
59      this.progressPanel = new System.Windows.Forms.Panel();
60      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
61      this.tabControl.SuspendLayout();
62      this.problemTabPage.SuspendLayout();
63      this.algorithmTabPage.SuspendLayout();
64      this.runsTabPage.SuspendLayout();
65      this.okbTabPage.SuspendLayout();
66      this.problemInstancesTabPage.SuspendLayout();
67      this.instancesDropPanel.SuspendLayout();
68      this.SuspendLayout();
69      //
70      // nameTextBox
71      //
72      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
73      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
74      this.nameTextBox.Location = new System.Drawing.Point(75, 0);
75      this.nameTextBox.Size = new System.Drawing.Size(449, 20);
76      //
77      // infoLabel
78      //
79      this.infoLabel.Location = new System.Drawing.Point(530, 3);
80      //
81      // evaluationsLimitabel
82      //
83      this.evaluationsLimitabel.AutoSize = true;
84      this.evaluationsLimitabel.Location = new System.Drawing.Point(3, 29);
85      this.evaluationsLimitabel.Name = "evaluationsLimitabel";
86      this.evaluationsLimitabel.Size = new System.Drawing.Size(66, 13);
87      this.evaluationsLimitabel.TabIndex = 5;
88      this.evaluationsLimitabel.Text = "Budget (FE):";
89      //
90      // maxEvaluationsTextBox
91      //
92      this.maxEvaluationsTextBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
93            | System.Windows.Forms.AnchorStyles.Right)));
94      this.maxEvaluationsTextBox.Location = new System.Drawing.Point(75, 26);
95      this.maxEvaluationsTextBox.Name = "maxEvaluationsTextBox";
96      this.maxEvaluationsTextBox.Size = new System.Drawing.Size(449, 20);
97      this.maxEvaluationsTextBox.TabIndex = 6;
98      this.maxEvaluationsTextBox.Validating += new System.ComponentModel.CancelEventHandler(this.maxEvaluationsTextBox_Validating);
99      //
100      // tabControl
101      //
102      this.tabControl.AllowDrop = true;
103      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
104            | System.Windows.Forms.AnchorStyles.Left)
105            | System.Windows.Forms.AnchorStyles.Right)));
106      this.tabControl.Controls.Add(this.problemTabPage);
107      this.tabControl.Controls.Add(this.algorithmTabPage);
108      this.tabControl.Controls.Add(this.runsTabPage);
109      this.tabControl.Controls.Add(this.okbTabPage);
110      this.tabControl.Controls.Add(this.problemInstancesTabPage);
111      this.tabControl.Location = new System.Drawing.Point(0, 52);
112      this.tabControl.Name = "tabControl";
113      this.tabControl.SelectedIndex = 0;
114      this.tabControl.Size = new System.Drawing.Size(546, 361);
115      this.tabControl.TabIndex = 17;
116      //
117      // problemTabPage
118      //
119      this.problemTabPage.AllowDrop = true;
120      this.problemTabPage.Controls.Add(this.problemViewHost);
121      this.problemTabPage.Controls.Add(this.openProblemButton);
122      this.problemTabPage.Controls.Add(this.newProblemButton);
123      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
124      this.problemTabPage.Name = "problemTabPage";
125      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
126      this.problemTabPage.Size = new System.Drawing.Size(538, 335);
127      this.problemTabPage.TabIndex = 1;
128      this.problemTabPage.Text = "Problem";
129      this.problemTabPage.UseVisualStyleBackColor = true;
130      this.problemTabPage.DragDrop += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragDrop);
131      this.problemTabPage.DragEnter += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
132      this.problemTabPage.DragOver += new System.Windows.Forms.DragEventHandler(this.problemTabPage_DragEnterOver);
133      //
134      // problemViewHost
135      //
136      this.problemViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
137            | System.Windows.Forms.AnchorStyles.Left)
138            | System.Windows.Forms.AnchorStyles.Right)));
139      this.problemViewHost.Caption = "View";
140      this.problemViewHost.Content = null;
141      this.problemViewHost.Enabled = false;
142      this.problemViewHost.Location = new System.Drawing.Point(6, 36);
143      this.problemViewHost.Name = "problemViewHost";
144      this.problemViewHost.ReadOnly = false;
145      this.problemViewHost.Size = new System.Drawing.Size(526, 293);
146      this.problemViewHost.TabIndex = 2;
147      this.problemViewHost.ViewsLabelVisible = true;
148      this.problemViewHost.ViewType = null;
149      //
150      // openProblemButton
151      //
152      this.openProblemButton.Image = ((System.Drawing.Image)(resources.GetObject("openProblemButton.Image")));
153      this.openProblemButton.Location = new System.Drawing.Point(36, 6);
154      this.openProblemButton.Name = "openProblemButton";
155      this.openProblemButton.Size = new System.Drawing.Size(24, 24);
156      this.openProblemButton.TabIndex = 1;
157      this.toolTip.SetToolTip(this.openProblemButton, "Open Problem");
158      this.openProblemButton.UseVisualStyleBackColor = true;
159      this.openProblemButton.Click += new System.EventHandler(this.openProblemButton_Click);
160      //
161      // newProblemButton
162      //
163      this.newProblemButton.Image = ((System.Drawing.Image)(resources.GetObject("newProblemButton.Image")));
164      this.newProblemButton.Location = new System.Drawing.Point(6, 6);
165      this.newProblemButton.Name = "newProblemButton";
166      this.newProblemButton.Size = new System.Drawing.Size(24, 24);
167      this.newProblemButton.TabIndex = 0;
168      this.toolTip.SetToolTip(this.newProblemButton, "New Problem");
169      this.newProblemButton.UseVisualStyleBackColor = true;
170      this.newProblemButton.Click += new System.EventHandler(this.newProblemButton_Click);
171      //
172      // algorithmTabPage
173      //
174      this.algorithmTabPage.Controls.Add(this.algorithmViewHost);
175      this.algorithmTabPage.Controls.Add(this.algorithmSuggestionLabel);
176      this.algorithmTabPage.Controls.Add(this.suggestedInstancesComboBox);
177      this.algorithmTabPage.Location = new System.Drawing.Point(4, 22);
178      this.algorithmTabPage.Name = "algorithmTabPage";
179      this.algorithmTabPage.Padding = new System.Windows.Forms.Padding(3);
180      this.algorithmTabPage.Size = new System.Drawing.Size(538, 335);
181      this.algorithmTabPage.TabIndex = 4;
182      this.algorithmTabPage.Text = "Algorithm";
183      this.algorithmTabPage.UseVisualStyleBackColor = true;
184      //
185      // algorithmViewHost
186      //
187      this.algorithmViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
188            | System.Windows.Forms.AnchorStyles.Left)
189            | System.Windows.Forms.AnchorStyles.Right)));
190      this.algorithmViewHost.Caption = "View";
191      this.algorithmViewHost.Content = null;
192      this.algorithmViewHost.Enabled = false;
193      this.algorithmViewHost.Location = new System.Drawing.Point(6, 36);
194      this.algorithmViewHost.Name = "algorithmViewHost";
195      this.algorithmViewHost.ReadOnly = false;
196      this.algorithmViewHost.Size = new System.Drawing.Size(526, 293);
197      this.algorithmViewHost.TabIndex = 2;
198      this.algorithmViewHost.ViewsLabelVisible = true;
199      this.algorithmViewHost.ViewType = null;
200      //
201      // algorithmSuggestionLabel
202      //
203      this.algorithmSuggestionLabel.AutoSize = true;
204      this.algorithmSuggestionLabel.Location = new System.Drawing.Point(6, 9);
205      this.algorithmSuggestionLabel.Name = "algorithmSuggestionLabel";
206      this.algorithmSuggestionLabel.Size = new System.Drawing.Size(156, 13);
207      this.algorithmSuggestionLabel.TabIndex = 1;
208      this.algorithmSuggestionLabel.Text = "Suggested Algorithm Instances:";
209      //
210      // suggestedInstancesComboBox
211      //
212      this.suggestedInstancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
213            | System.Windows.Forms.AnchorStyles.Right)));
214      this.suggestedInstancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
215      this.suggestedInstancesComboBox.FormattingEnabled = true;
216      this.suggestedInstancesComboBox.Location = new System.Drawing.Point(178, 6);
217      this.suggestedInstancesComboBox.Name = "suggestedInstancesComboBox";
218      this.suggestedInstancesComboBox.Size = new System.Drawing.Size(354, 21);
219      this.suggestedInstancesComboBox.TabIndex = 0;
220      this.suggestedInstancesComboBox.SelectedIndexChanged += new System.EventHandler(this.suggestedInstancesComboBox_SelectedIndexChanged);
221      //
222      // runsTabPage
223      //
224      this.runsTabPage.Controls.Add(this.runsView);
225      this.runsTabPage.Location = new System.Drawing.Point(4, 22);
226      this.runsTabPage.Name = "runsTabPage";
227      this.runsTabPage.Padding = new System.Windows.Forms.Padding(3);
228      this.runsTabPage.Size = new System.Drawing.Size(538, 335);
229      this.runsTabPage.TabIndex = 3;
230      this.runsTabPage.Text = "Runs";
231      this.runsTabPage.UseVisualStyleBackColor = true;
232      //
233      // okbTabPage
234      //
235      this.okbTabPage.Controls.Add(this.progressPanel);
236      this.okbTabPage.Controls.Add(this.okbDownloadButton);
237      this.okbTabPage.Controls.Add(this.algorithmInstancesViewHost);
238      this.okbTabPage.Location = new System.Drawing.Point(4, 22);
239      this.okbTabPage.Name = "okbTabPage";
240      this.okbTabPage.Padding = new System.Windows.Forms.Padding(3);
241      this.okbTabPage.Size = new System.Drawing.Size(538, 335);
242      this.okbTabPage.TabIndex = 5;
243      this.okbTabPage.Text = "Knowledge Base";
244      this.okbTabPage.UseVisualStyleBackColor = true;
245      //
246      // algorithmInstancesViewHost
247      //
248      this.algorithmInstancesViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
249            | System.Windows.Forms.AnchorStyles.Left)
250            | System.Windows.Forms.AnchorStyles.Right)));
251      this.algorithmInstancesViewHost.Caption = "View";
252      this.algorithmInstancesViewHost.Content = null;
253      this.algorithmInstancesViewHost.Enabled = false;
254      this.algorithmInstancesViewHost.Location = new System.Drawing.Point(3, 35);
255      this.algorithmInstancesViewHost.Name = "algorithmInstancesViewHost";
256      this.algorithmInstancesViewHost.ReadOnly = false;
257      this.algorithmInstancesViewHost.Size = new System.Drawing.Size(532, 297);
258      this.algorithmInstancesViewHost.TabIndex = 0;
259      this.algorithmInstancesViewHost.ViewsLabelVisible = true;
260      this.algorithmInstancesViewHost.ViewType = null;
261      //
262      // problemInstancesTabPage
263      //
264      this.problemInstancesTabPage.Controls.Add(this.problemInstancesView);
265      this.problemInstancesTabPage.Controls.Add(this.instancesDropPanel);
266      this.problemInstancesTabPage.Controls.Add(this.refreshMapButton);
267      this.problemInstancesTabPage.Location = new System.Drawing.Point(4, 22);
268      this.problemInstancesTabPage.Name = "problemInstancesTabPage";
269      this.problemInstancesTabPage.Padding = new System.Windows.Forms.Padding(3);
270      this.problemInstancesTabPage.Size = new System.Drawing.Size(538, 335);
271      this.problemInstancesTabPage.TabIndex = 6;
272      this.problemInstancesTabPage.Text = "Problem Instances";
273      this.problemInstancesTabPage.UseVisualStyleBackColor = true;
274      //
275      // problemInstancesView
276      //
277      this.problemInstancesView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
278            | System.Windows.Forms.AnchorStyles.Left)
279            | System.Windows.Forms.AnchorStyles.Right)));
280      this.problemInstancesView.Caption = "View";
281      this.problemInstancesView.Content = null;
282      this.problemInstancesView.Enabled = false;
283      this.problemInstancesView.Location = new System.Drawing.Point(3, 34);
284      this.problemInstancesView.Name = "problemInstancesView";
285      this.problemInstancesView.ReadOnly = false;
286      this.problemInstancesView.Size = new System.Drawing.Size(532, 298);
287      this.problemInstancesView.TabIndex = 3;
288      this.problemInstancesView.ViewsLabelVisible = true;
289      this.problemInstancesView.ViewType = null;
290      //
291      // instancesDropPanel
292      //
293      this.instancesDropPanel.AllowDrop = true;
294      this.instancesDropPanel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
295            | System.Windows.Forms.AnchorStyles.Right)));
296      this.instancesDropPanel.BackColor = System.Drawing.Color.LightYellow;
297      this.instancesDropPanel.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
298      this.instancesDropPanel.Controls.Add(this.dragFLAHereLabel);
299      this.instancesDropPanel.Location = new System.Drawing.Point(35, 7);
300      this.instancesDropPanel.Name = "instancesDropPanel";
301      this.instancesDropPanel.Size = new System.Drawing.Size(500, 21);
302      this.instancesDropPanel.TabIndex = 2;
303      this.instancesDropPanel.DragDrop += new System.Windows.Forms.DragEventHandler(this.instancesDropPanel_DragDrop);
304      this.instancesDropPanel.DragEnter += new System.Windows.Forms.DragEventHandler(this.instancesDropPanel_DragEnter);
305      this.instancesDropPanel.DragOver += new System.Windows.Forms.DragEventHandler(this.instancesDropPanel_DragOver);
306      //
307      // dragFLAHereLabel
308      //
309      this.dragFLAHereLabel.Anchor = System.Windows.Forms.AnchorStyles.None;
310      this.dragFLAHereLabel.AutoSize = true;
311      this.dragFLAHereLabel.ForeColor = System.Drawing.SystemColors.ControlDarkDark;
312      this.dragFLAHereLabel.Location = new System.Drawing.Point(155, 3);
313      this.dragFLAHereLabel.Name = "dragFLAHereLabel";
314      this.dragFLAHereLabel.Size = new System.Drawing.Size(175, 13);
315      this.dragFLAHereLabel.TabIndex = 0;
316      this.dragFLAHereLabel.Text = "Drag and drop runs with FLA here...";
317      //
318      // refreshMapButton
319      //
320      this.refreshMapButton.Location = new System.Drawing.Point(3, 6);
321      this.refreshMapButton.Name = "refreshMapButton";
322      this.refreshMapButton.Size = new System.Drawing.Size(26, 23);
323      this.refreshMapButton.TabIndex = 1;
324      this.refreshMapButton.Text = "Refresh";
325      this.refreshMapButton.UseVisualStyleBackColor = true;
326      this.refreshMapButton.Click += new System.EventHandler(this.refreshMapButton_Click);
327      //
328      // openFileDialog
329      //
330      this.openFileDialog.DefaultExt = "hl";
331      this.openFileDialog.FileName = "Optimizer";
332      this.openFileDialog.Filter = "HeuristicLab Files|*.hl|All Files|*.*";
333      this.openFileDialog.Title = "Open Optimizer";
334      //
335      // okbDownloadButton
336      //
337      this.okbDownloadButton.Location = new System.Drawing.Point(6, 6);
338      this.okbDownloadButton.Name = "okbDownloadButton";
339      this.okbDownloadButton.Size = new System.Drawing.Size(146, 23);
340      this.okbDownloadButton.TabIndex = 1;
341      this.okbDownloadButton.Text = "Download from OKB";
342      this.okbDownloadButton.UseVisualStyleBackColor = true;
343      this.okbDownloadButton.Click += new System.EventHandler(this.okbDownloadButton_Click);
344      //
345      // runsView
346      //
347      this.runsView.Caption = "RunCollection View";
348      this.runsView.Content = null;
349      this.runsView.Dock = System.Windows.Forms.DockStyle.Fill;
350      this.runsView.Location = new System.Drawing.Point(3, 3);
351      this.runsView.Name = "runsView";
352      this.runsView.ReadOnly = false;
353      this.runsView.Size = new System.Drawing.Size(532, 329);
354      this.runsView.TabIndex = 1;
355      //
356      // progressPanel
357      //
358      this.progressPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
359            | System.Windows.Forms.AnchorStyles.Left)
360            | System.Windows.Forms.AnchorStyles.Right)));
361      this.progressPanel.Location = new System.Drawing.Point(6, 35);
362      this.progressPanel.Name = "progressPanel";
363      this.progressPanel.Size = new System.Drawing.Size(526, 294);
364      this.progressPanel.TabIndex = 2;
365      this.progressPanel.Visible = false;
366      //
367      // ExpertSystemView
368      //
369      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
370      this.Controls.Add(this.tabControl);
371      this.Controls.Add(this.evaluationsLimitabel);
372      this.Controls.Add(this.maxEvaluationsTextBox);
373      this.Name = "ExpertSystemView";
374      this.Size = new System.Drawing.Size(549, 413);
375      this.Controls.SetChildIndex(this.maxEvaluationsTextBox, 0);
376      this.Controls.SetChildIndex(this.evaluationsLimitabel, 0);
377      this.Controls.SetChildIndex(this.tabControl, 0);
378      this.Controls.SetChildIndex(this.nameLabel, 0);
379      this.Controls.SetChildIndex(this.nameTextBox, 0);
380      this.Controls.SetChildIndex(this.infoLabel, 0);
381      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
382      this.tabControl.ResumeLayout(false);
383      this.problemTabPage.ResumeLayout(false);
384      this.algorithmTabPage.ResumeLayout(false);
385      this.algorithmTabPage.PerformLayout();
386      this.runsTabPage.ResumeLayout(false);
387      this.okbTabPage.ResumeLayout(false);
388      this.problemInstancesTabPage.ResumeLayout(false);
389      this.instancesDropPanel.ResumeLayout(false);
390      this.instancesDropPanel.PerformLayout();
391      this.ResumeLayout(false);
392      this.PerformLayout();
393
394    }
395
396    #endregion
397
398    private System.Windows.Forms.Label evaluationsLimitabel;
399    private System.Windows.Forms.TextBox maxEvaluationsTextBox;
400    private MainForm.WindowsForms.DragOverTabControl tabControl;
401    private System.Windows.Forms.TabPage runsTabPage;
402    private HeuristicLab.Optimization.Views.RunCollectionView runsView;
403    private System.Windows.Forms.OpenFileDialog openFileDialog;
404    private System.Windows.Forms.TabPage problemTabPage;
405    private MainForm.WindowsForms.ViewHost problemViewHost;
406    private System.Windows.Forms.Button openProblemButton;
407    private System.Windows.Forms.Button newProblemButton;
408    private System.Windows.Forms.TabPage algorithmTabPage;
409    private MainForm.WindowsForms.ViewHost algorithmViewHost;
410    private System.Windows.Forms.Label algorithmSuggestionLabel;
411    private System.Windows.Forms.ComboBox suggestedInstancesComboBox;
412    private System.Windows.Forms.TabPage okbTabPage;
413    private MainForm.WindowsForms.ViewHost algorithmInstancesViewHost;
414    private System.Windows.Forms.TabPage problemInstancesTabPage;
415    private System.Windows.Forms.Panel instancesDropPanel;
416    private System.Windows.Forms.Button refreshMapButton;
417    private System.Windows.Forms.Label dragFLAHereLabel;
418    private MainForm.WindowsForms.ViewHost problemInstancesView;
419    private System.Windows.Forms.Button okbDownloadButton;
420    private System.Windows.Forms.Panel progressPanel;
421  }
422}
Note: See TracBrowser for help on using the repository browser.