Changeset 5648 for branches/QAP/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QAPAssignmentView.Designer.cs
- Timestamp:
- 03/10/11 01:49:10 (14 years ago)
- Location:
- branches/QAP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/QAP
- Property svn:ignore
-
old new 1 1 *.suo 2 TestResults
-
- Property svn:ignore
-
branches/QAP/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QAPAssignmentView.Designer.cs
r5641 r5648 50 50 this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl(); 51 51 this.visualizationTabPage = new System.Windows.Forms.TabPage(); 52 this.distancesRadioButton = new System.Windows.Forms.RadioButton();53 this.weightsRadioButton = new System.Windows.Forms.RadioButton();54 this.pictureBox = new System.Windows.Forms.PictureBox();55 52 this.valueTabPage = new System.Windows.Forms.TabPage(); 56 53 this.assignmentGroupBox = new System.Windows.Forms.GroupBox(); 57 54 this.assignmentViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost(); 58 this. redrawButton = new System.Windows.Forms.Button();55 this.qapView = new HeuristicLab.Problems.QuadraticAssignment.Views.QAPView(); 59 56 ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit(); 60 57 this.splitContainer.Panel1.SuspendLayout(); … … 64 61 this.tabControl.SuspendLayout(); 65 62 this.visualizationTabPage.SuspendLayout(); 66 ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).BeginInit();67 63 this.valueTabPage.SuspendLayout(); 68 64 this.assignmentGroupBox.SuspendLayout(); … … 132 128 // visualizationTabPage 133 129 // 134 this.visualizationTabPage.Controls.Add(this.redrawButton); 135 this.visualizationTabPage.Controls.Add(this.distancesRadioButton); 136 this.visualizationTabPage.Controls.Add(this.weightsRadioButton); 137 this.visualizationTabPage.Controls.Add(this.pictureBox); 130 this.visualizationTabPage.Controls.Add(this.qapView); 138 131 this.visualizationTabPage.Location = new System.Drawing.Point(4, 22); 139 132 this.visualizationTabPage.Name = "visualizationTabPage"; … … 143 136 this.visualizationTabPage.Text = "Visualization"; 144 137 this.visualizationTabPage.UseVisualStyleBackColor = true; 145 //146 // distancesRadioButton147 //148 this.distancesRadioButton.AutoSize = true;149 this.distancesRadioButton.Checked = true;150 this.distancesRadioButton.Location = new System.Drawing.Point(6, 6);151 this.distancesRadioButton.Name = "distancesRadioButton";152 this.distancesRadioButton.Size = new System.Drawing.Size(72, 17);153 this.distancesRadioButton.TabIndex = 2;154 this.distancesRadioButton.TabStop = true;155 this.distancesRadioButton.Text = "Distances";156 this.distancesRadioButton.UseVisualStyleBackColor = true;157 this.distancesRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);158 //159 // weightsRadioButton160 //161 this.weightsRadioButton.AutoSize = true;162 this.weightsRadioButton.Location = new System.Drawing.Point(6, 29);163 this.weightsRadioButton.Name = "weightsRadioButton";164 this.weightsRadioButton.Size = new System.Drawing.Size(64, 17);165 this.weightsRadioButton.TabIndex = 1;166 this.weightsRadioButton.Text = "Weights";167 this.weightsRadioButton.UseVisualStyleBackColor = true;168 this.weightsRadioButton.CheckedChanged += new System.EventHandler(this.radioButton_CheckedChanged);169 //170 // pictureBox171 //172 this.pictureBox.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)173 | System.Windows.Forms.AnchorStyles.Left)174 | System.Windows.Forms.AnchorStyles.Right)));175 this.pictureBox.BackColor = System.Drawing.Color.White;176 this.pictureBox.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;177 this.pictureBox.Location = new System.Drawing.Point(84, 6);178 this.pictureBox.Name = "pictureBox";179 this.pictureBox.Size = new System.Drawing.Size(438, 269);180 this.pictureBox.TabIndex = 0;181 this.pictureBox.TabStop = false;182 this.pictureBox.SizeChanged += new System.EventHandler(this.pictureBox_SizeChanged);183 138 // 184 139 // valueTabPage … … 222 177 this.assignmentViewHost.ViewType = null; 223 178 // 224 // redrawButton 225 // 226 this.redrawButton.Location = new System.Drawing.Point(4, 53); 227 this.redrawButton.Name = "redrawButton"; 228 this.redrawButton.Size = new System.Drawing.Size(74, 23); 229 this.redrawButton.TabIndex = 3; 230 this.redrawButton.Text = "Redraw"; 231 this.redrawButton.UseVisualStyleBackColor = true; 232 this.redrawButton.Click += new System.EventHandler(this.redrawButton_Click); 179 // qapView 180 // 181 this.qapView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 182 | System.Windows.Forms.AnchorStyles.Left) 183 | System.Windows.Forms.AnchorStyles.Right))); 184 this.qapView.Assignment = null; 185 this.qapView.Distances = null; 186 this.qapView.Location = new System.Drawing.Point(0, 3); 187 this.qapView.Name = "qapView"; 188 this.qapView.Size = new System.Drawing.Size(526, 278); 189 this.qapView.TabIndex = 0; 190 this.qapView.Weights = null; 233 191 // 234 192 // QAPAssignmentView … … 246 204 this.tabControl.ResumeLayout(false); 247 205 this.visualizationTabPage.ResumeLayout(false); 248 this.visualizationTabPage.PerformLayout();249 ((System.ComponentModel.ISupportInitialize)(this.pictureBox)).EndInit();250 206 this.valueTabPage.ResumeLayout(false); 251 207 this.assignmentGroupBox.ResumeLayout(false); … … 261 217 private MainForm.WindowsForms.DragOverTabControl tabControl; 262 218 private System.Windows.Forms.TabPage visualizationTabPage; 263 private System.Windows.Forms.PictureBox pictureBox;264 219 private System.Windows.Forms.TabPage valueTabPage; 265 220 private System.Windows.Forms.GroupBox assignmentGroupBox; 266 221 private MainForm.WindowsForms.ViewHost assignmentViewHost; 267 private System.Windows.Forms.RadioButton distancesRadioButton; 268 private System.Windows.Forms.RadioButton weightsRadioButton; 269 private System.Windows.Forms.Button redrawButton; 222 private QAPView qapView; 270 223 } 271 224 }
Note: See TracChangeset
for help on using the changeset viewer.