Free cookie consent management tool by TermsFeed Policy Generator

source: branches/Benchmarking/sources/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.Designer.cs @ 7000

Last change on this file since 7000 was 7000, checked in by ascheibe, 12 years ago

#1659 updated branch from trunk

File size: 11.2 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2011 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.Problems.QuadraticAssignment.Views {
23  partial class QuadraticAssignmentProblemView {
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 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.importInstanceButton = new System.Windows.Forms.Button();
48      this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
49      this.QAPLIBInstancesLabel = new System.Windows.Forms.Label();
50      this.instancesComboBox = new System.Windows.Forms.ComboBox();
51      this.loadInstanceButton = new System.Windows.Forms.Button();
52      this.tabControl = new System.Windows.Forms.TabControl();
53      this.problemTabPage = new System.Windows.Forms.TabPage();
54      this.visualizationTabPage = new System.Windows.Forms.TabPage();
55      this.qapView = new HeuristicLab.Problems.QuadraticAssignment.Views.QAPVisualizationControl();
56      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
57      this.tabControl.SuspendLayout();
58      this.visualizationTabPage.SuspendLayout();
59      this.SuspendLayout();
60      //
61      // parameterCollectionView
62      //
63      this.parameterCollectionView.Location = new System.Drawing.Point(8, 107);
64      this.parameterCollectionView.Size = new System.Drawing.Size(629, 375);
65      //
66      // nameTextBox
67      //
68      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
69      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
70      this.nameTextBox.Location = new System.Drawing.Point(105, 29);
71      this.nameTextBox.Size = new System.Drawing.Size(517, 20);
72      //
73      // nameLabel
74      //
75      this.nameLabel.Location = new System.Drawing.Point(3, 32);
76      //
77      // infoLabel
78      //
79      this.infoLabel.Location = new System.Drawing.Point(628, 32);
80      //
81      // importInstanceButton
82      //
83      this.importInstanceButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
84      this.importInstanceButton.Location = new System.Drawing.Point(548, 0);
85      this.importInstanceButton.Name = "importInstanceButton";
86      this.importInstanceButton.Size = new System.Drawing.Size(99, 23);
87      this.importInstanceButton.TabIndex = 5;
88      this.importInstanceButton.Text = "Import...";
89      this.importInstanceButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
90      this.toolTip.SetToolTip(this.importInstanceButton, "Import files in QAPLIB format.");
91      this.importInstanceButton.UseVisualStyleBackColor = true;
92      this.importInstanceButton.Click += new System.EventHandler(this.importInstanceButton_Click);
93      //
94      // openFileDialog
95      //
96      this.openFileDialog.FileName = "instance.dat";
97      this.openFileDialog.Filter = "Dat files|*.dat|All files|*.*";
98      //
99      // QAPLIBInstancesLabel
100      //
101      this.QAPLIBInstancesLabel.AutoSize = true;
102      this.QAPLIBInstancesLabel.Cursor = System.Windows.Forms.Cursors.Hand;
103      this.QAPLIBInstancesLabel.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
104      this.QAPLIBInstancesLabel.ForeColor = System.Drawing.Color.Blue;
105      this.QAPLIBInstancesLabel.Location = new System.Drawing.Point(3, 5);
106      this.QAPLIBInstancesLabel.Name = "QAPLIBInstancesLabel";
107      this.QAPLIBInstancesLabel.Size = new System.Drawing.Size(96, 13);
108      this.QAPLIBInstancesLabel.TabIndex = 6;
109      this.QAPLIBInstancesLabel.Text = "QAPLIB instances:";
110      this.toolTip.SetToolTip(this.QAPLIBInstancesLabel, "These instances were taken from the QAPLIB homepage at http://www.seas.upenn.edu/" +
111              "qaplib/");
112      this.QAPLIBInstancesLabel.Click += new System.EventHandler(this.QAPLIBInstancesLabel_Click);
113      this.QAPLIBInstancesLabel.MouseEnter += new System.EventHandler(this.QAPLIBInstancesLabel_MouseEnter);
114      this.QAPLIBInstancesLabel.MouseLeave += new System.EventHandler(this.QAPLIBInstancesLabel_MouseLeave);
115      //
116      // instancesComboBox
117      //
118      this.instancesComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
119                  | System.Windows.Forms.AnchorStyles.Right)));
120      this.instancesComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
121      this.instancesComboBox.FormattingEnabled = true;
122      this.instancesComboBox.Location = new System.Drawing.Point(105, 2);
123      this.instancesComboBox.Name = "instancesComboBox";
124      this.instancesComboBox.Size = new System.Drawing.Size(358, 21);
125      this.instancesComboBox.TabIndex = 7;
126      this.instancesComboBox.SelectedValueChanged += new System.EventHandler(this.instancesComboBox_SelectedValueChanged);
127      //
128      // loadInstanceButton
129      //
130      this.loadInstanceButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
131      this.loadInstanceButton.Location = new System.Drawing.Point(469, 0);
132      this.loadInstanceButton.Name = "loadInstanceButton";
133      this.loadInstanceButton.Size = new System.Drawing.Size(73, 23);
134      this.loadInstanceButton.TabIndex = 5;
135      this.loadInstanceButton.Text = "Load";
136      this.loadInstanceButton.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
137      this.toolTip.SetToolTip(this.loadInstanceButton, "Load the selected QAPLIB instance.");
138      this.loadInstanceButton.UseVisualStyleBackColor = true;
139      this.loadInstanceButton.Click += new System.EventHandler(this.loadInstanceButton_Click);
140      //
141      // tabControl
142      //
143      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
144                  | System.Windows.Forms.AnchorStyles.Left)
145                  | System.Windows.Forms.AnchorStyles.Right)));
146      this.tabControl.Controls.Add(this.problemTabPage);
147      this.tabControl.Controls.Add(this.visualizationTabPage);
148      this.tabControl.Location = new System.Drawing.Point(0, 55);
149      this.tabControl.Name = "tabControl";
150      this.tabControl.SelectedIndex = 0;
151      this.tabControl.Size = new System.Drawing.Size(647, 437);
152      this.tabControl.TabIndex = 8;
153      //
154      // problemTabPage
155      //
156      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
157      this.problemTabPage.Name = "problemTabPage";
158      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
159      this.problemTabPage.Size = new System.Drawing.Size(639, 411);
160      this.problemTabPage.TabIndex = 0;
161      this.problemTabPage.Text = "Problem";
162      this.problemTabPage.UseVisualStyleBackColor = true;
163      //
164      // visualizationTabPage
165      //
166      this.visualizationTabPage.Controls.Add(this.qapView);
167      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
168      this.visualizationTabPage.Name = "visualizationTabPage";
169      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
170      this.visualizationTabPage.Size = new System.Drawing.Size(639, 411);
171      this.visualizationTabPage.TabIndex = 1;
172      this.visualizationTabPage.Text = "Visualization";
173      this.visualizationTabPage.UseVisualStyleBackColor = true;
174      //
175      // qapView
176      //
177      this.qapView.Assignment = null;
178      this.qapView.Distances = null;
179      this.qapView.Dock = System.Windows.Forms.DockStyle.Fill;
180      this.qapView.Location = new System.Drawing.Point(3, 3);
181      this.qapView.Name = "qapView";
182      this.qapView.Size = new System.Drawing.Size(633, 405);
183      this.qapView.TabIndex = 0;
184      this.qapView.Weights = null;
185      //
186      // QuadraticAssignmentProblemView
187      //
188      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
189      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
190      this.Controls.Add(this.instancesComboBox);
191      this.Controls.Add(this.tabControl);
192      this.Controls.Add(this.importInstanceButton);
193      this.Controls.Add(this.loadInstanceButton);
194      this.Controls.Add(this.QAPLIBInstancesLabel);
195      this.Name = "QuadraticAssignmentProblemView";
196      this.Size = new System.Drawing.Size(647, 492);
197      this.Controls.SetChildIndex(this.QAPLIBInstancesLabel, 0);
198      this.Controls.SetChildIndex(this.loadInstanceButton, 0);
199      this.Controls.SetChildIndex(this.importInstanceButton, 0);
200      this.Controls.SetChildIndex(this.tabControl, 0);
201      this.Controls.SetChildIndex(this.instancesComboBox, 0);
202      this.Controls.SetChildIndex(this.infoLabel, 0);
203      this.Controls.SetChildIndex(this.parameterCollectionView, 0);
204      this.Controls.SetChildIndex(this.nameLabel, 0);
205      this.Controls.SetChildIndex(this.nameTextBox, 0);
206      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
207      this.tabControl.ResumeLayout(false);
208      this.visualizationTabPage.ResumeLayout(false);
209      this.ResumeLayout(false);
210      this.PerformLayout();
211
212    }
213
214    #endregion
215
216    private System.Windows.Forms.Button importInstanceButton;
217    private System.Windows.Forms.OpenFileDialog openFileDialog;
218    private System.Windows.Forms.Label QAPLIBInstancesLabel;
219    private System.Windows.Forms.ComboBox instancesComboBox;
220    private System.Windows.Forms.Button loadInstanceButton;
221    private System.Windows.Forms.TabControl tabControl;
222    private System.Windows.Forms.TabPage problemTabPage;
223    private System.Windows.Forms.TabPage visualizationTabPage;
224    private QAPVisualizationControl qapView;
225  }
226}
Note: See TracBrowser for help on using the repository browser.