Free cookie consent management tool by TermsFeed Policy Generator

source: branches/QAP/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QAPAssignmentView.Designer.cs @ 5598

Last change on this file since 5598 was 5598, checked in by abeham, 13 years ago

#1330

  • Updated solution view
  • Made distance matrix a mandatory parameter (solution instances are small anyway)
  • Added and set best known solution if available for a QAPLIB instance
File size: 11.7 KB
Line 
1namespace HeuristicLab.Problems.QuadraticAssignment.Views {
2  partial class QAPAssignmentView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.splitContainer = new System.Windows.Forms.SplitContainer();
27      this.qualityGroupBox = new System.Windows.Forms.GroupBox();
28      this.qualityViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
29      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
30      this.visualizationTabPage = new System.Windows.Forms.TabPage();
31      this.pictureBox = new System.Windows.Forms.PictureBox();
32      this.valueTabPage = new System.Windows.Forms.TabPage();
33      this.assignmentGroupBox = new System.Windows.Forms.GroupBox();
34      this.assignmentViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
35      this.weightsRadioButton = new System.Windows.Forms.RadioButton();
36      this.distancesRadioButton = new System.Windows.Forms.RadioButton();
37      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
38      this.splitContainer.Panel1.SuspendLayout();
39      this.splitContainer.Panel2.SuspendLayout();
40      this.splitContainer.SuspendLayout();
41      this.qualityGroupBox.SuspendLayout();
42      this.tabControl.SuspendLayout();
43      this.visualizationTabPage.SuspendLayout();
44      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();
45      this.valueTabPage.SuspendLayout();
46      this.assignmentGroupBox.SuspendLayout();
47      this.SuspendLayout();
48      //
49      // splitContainer
50      //
51      this.splitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
52      this.splitContainer.Location = new System.Drawing.Point(0, 0);
53      this.splitContainer.Name = "splitContainer";
54      this.splitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
55      //
56      // splitContainer.Panel1
57      //
58      this.splitContainer.Panel1.Controls.Add(this.qualityGroupBox);
59      //
60      // splitContainer.Panel2
61      //
62      this.splitContainer.Panel2.Controls.Add(this.tabControl);
63      this.splitContainer.Size = new System.Drawing.Size(536, 378);
64      this.splitContainer.SplitterDistance = 64;
65      this.splitContainer.TabIndex = 1;
66      //
67      // qualityGroupBox
68      //
69      this.qualityGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
70                  | System.Windows.Forms.AnchorStyles.Left)
71                  | System.Windows.Forms.AnchorStyles.Right)));
72      this.qualityGroupBox.Controls.Add(this.qualityViewHost);
73      this.qualityGroupBox.Location = new System.Drawing.Point(0, 0);
74      this.qualityGroupBox.Name = "qualityGroupBox";
75      this.qualityGroupBox.Size = new System.Drawing.Size(536, 61);
76      this.qualityGroupBox.TabIndex = 0;
77      this.qualityGroupBox.TabStop = false;
78      this.qualityGroupBox.Text = "Quality";
79      //
80      // qualityViewHost
81      //
82      this.qualityViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
83                  | System.Windows.Forms.AnchorStyles.Left)
84                  | System.Windows.Forms.AnchorStyles.Right)));
85      this.qualityViewHost.Caption = "View";
86      this.qualityViewHost.Content = null;
87      this.qualityViewHost.Enabled = false;
88      this.qualityViewHost.Location = new System.Drawing.Point(6, 19);
89      this.qualityViewHost.Name = "qualityViewHost";
90      this.qualityViewHost.ReadOnly = false;
91      this.qualityViewHost.Size = new System.Drawing.Size(524, 36);
92      this.qualityViewHost.TabIndex = 0;
93      this.qualityViewHost.ViewsLabelVisible = true;
94      this.qualityViewHost.ViewType = null;
95      //
96      // tabControl
97      //
98      this.tabControl.AllowDrop = true;
99      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
100                  | System.Windows.Forms.AnchorStyles.Left)
101                  | System.Windows.Forms.AnchorStyles.Right)));
102      this.tabControl.Controls.Add(this.visualizationTabPage);
103      this.tabControl.Controls.Add(this.valueTabPage);
104      this.tabControl.Location = new System.Drawing.Point(0, 3);
105      this.tabControl.Name = "tabControl";
106      this.tabControl.SelectedIndex = 0;
107      this.tabControl.Size = new System.Drawing.Size(536, 307);
108      this.tabControl.TabIndex = 0;
109      //
110      // visualizationTabPage
111      //
112      this.visualizationTabPage.Controls.Add(this.distancesRadioButton);
113      this.visualizationTabPage.Controls.Add(this.weightsRadioButton);
114      this.visualizationTabPage.Controls.Add(this.pictureBox);
115      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
116      this.visualizationTabPage.Name = "visualizationTabPage";
117      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
118      this.visualizationTabPage.Size = new System.Drawing.Size(528, 281);
119      this.visualizationTabPage.TabIndex = 0;
120      this.visualizationTabPage.Text = "Visualization";
121      this.visualizationTabPage.UseVisualStyleBackColor = true;
122      //
123      // pictureBox
124      //
125      this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
126                  | System.Windows.Forms.AnchorStyles.Left)
127                  | System.Windows.Forms.AnchorStyles.Right)));
128      this.pictureBox.BackColor = System.Drawing.Color.White;
129      this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
130      this.pictureBox.Location = new System.Drawing.Point(84, 6);
131      this.pictureBox.Name = "pictureBox";
132      this.pictureBox.Size = new System.Drawing.Size(438, 269);
133      this.pictureBox.TabIndex = 0;
134      this.pictureBox.TabStop = false;
135      this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);
136      //
137      // valueTabPage
138      //
139      this.valueTabPage.Controls.Add(this.assignmentGroupBox);
140      this.valueTabPage.Location = new System.Drawing.Point(4, 22);
141      this.valueTabPage.Name = "valueTabPage";
142      this.valueTabPage.Padding = new System.Windows.Forms.Padding(3);
143      this.valueTabPage.Size = new System.Drawing.Size(528, 281);
144      this.valueTabPage.TabIndex = 1;
145      this.valueTabPage.Text = "Value";
146      this.valueTabPage.UseVisualStyleBackColor = true;
147      //
148      // assignmentGroupBox
149      //
150      this.assignmentGroupBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
151                  | System.Windows.Forms.AnchorStyles.Left)
152                  | System.Windows.Forms.AnchorStyles.Right)));
153      this.assignmentGroupBox.Controls.Add(this.assignmentViewHost);
154      this.assignmentGroupBox.Location = new System.Drawing.Point(6, 6);
155      this.assignmentGroupBox.Name = "assignmentGroupBox";
156      this.assignmentGroupBox.Size = new System.Drawing.Size(516, 269);
157      this.assignmentGroupBox.TabIndex = 0;
158      this.assignmentGroupBox.TabStop = false;
159      this.assignmentGroupBox.Text = "Assignment";
160      //
161      // assignmentViewHost
162      //
163      this.assignmentViewHost.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
164                  | System.Windows.Forms.AnchorStyles.Left)
165                  | System.Windows.Forms.AnchorStyles.Right)));
166      this.assignmentViewHost.Caption = "View";
167      this.assignmentViewHost.Content = null;
168      this.assignmentViewHost.Enabled = false;
169      this.assignmentViewHost.Location = new System.Drawing.Point(6, 19);
170      this.assignmentViewHost.Name = "assignmentViewHost";
171      this.assignmentViewHost.ReadOnly = false;
172      this.assignmentViewHost.Size = new System.Drawing.Size(504, 244);
173      this.assignmentViewHost.TabIndex = 0;
174      this.assignmentViewHost.ViewsLabelVisible = true;
175      this.assignmentViewHost.ViewType = null;
176      //
177      // weightsRadioButton
178      //
179      this.weightsRadioButton.AutoSize = true;
180      this.weightsRadioButton.Location = new System.Drawing.Point(6, 29);
181      this.weightsRadioButton.Name = "weightsRadioButton";
182      this.weightsRadioButton.Size = new System.Drawing.Size(64, 17);
183      this.weightsRadioButton.TabIndex = 1;
184      this.weightsRadioButton.Text = "Weights";
185      this.weightsRadioButton.UseVisualStyleBackColor = true;
186      this.weightsRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
187      //
188      // distancesRadioButton
189      //
190      this.distancesRadioButton.AutoSize = true;
191      this.distancesRadioButton.Checked = true;
192      this.distancesRadioButton.Location = new System.Drawing.Point(6, 6);
193      this.distancesRadioButton.Name = "distancesRadioButton";
194      this.distancesRadioButton.Size = new System.Drawing.Size(72, 17);
195      this.distancesRadioButton.TabIndex = 2;
196      this.distancesRadioButton.TabStop = true;
197      this.distancesRadioButton.Text = "Distances";
198      this.distancesRadioButton.UseVisualStyleBackColor = true;
199      this.distancesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);
200      //
201      // QAPAssignmentView
202      //
203      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
204      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
205      this.Controls.Add(this.splitContainer);
206      this.Name = "QAPAssignmentView";
207      this.Size = new System.Drawing.Size(536, 378);
208      this.splitContainer.Panel1.ResumeLayout(false);
209      this.splitContainer.Panel2.ResumeLayout(false);
210      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).EndInit();
211      this.splitContainer.ResumeLayout(false);
212      this.qualityGroupBox.ResumeLayout(false);
213      this.tabControl.ResumeLayout(false);
214      this.visualizationTabPage.ResumeLayout(false);
215      this.visualizationTabPage.PerformLayout();
216      ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();
217      this.valueTabPage.ResumeLayout(false);
218      this.assignmentGroupBox.ResumeLayout(false);
219      this.ResumeLayout(false);
220
221    }
222
223    #endregion
224
225    private System.Windows.Forms.SplitContainer splitContainer;
226    private System.Windows.Forms.GroupBox qualityGroupBox;
227    private MainForm.WindowsForms.ViewHost qualityViewHost;
228    private MainForm.WindowsForms.DragOverTabControl tabControl;
229    private System.Windows.Forms.TabPage visualizationTabPage;
230    private System.Windows.Forms.PictureBox pictureBox;
231    private System.Windows.Forms.TabPage valueTabPage;
232    private System.Windows.Forms.GroupBox assignmentGroupBox;
233    private MainForm.WindowsForms.ViewHost assignmentViewHost;
234    private System.Windows.Forms.RadioButton distancesRadioButton;
235    private System.Windows.Forms.RadioButton weightsRadioButton;
236  }
237}
Note: See TracBrowser for help on using the repository browser.