Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/09/11 03:23:32 (13 years ago)
Author:
abeham
Message:

#1330

  • worked on visualization (and MDS)
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/QAP/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QAPAssignmentView.Designer.cs

    r5598 r5641  
    1 namespace HeuristicLab.Problems.QuadraticAssignment.Views {
     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 {
    223  partial class QAPAssignmentView {
    324    /// <summary>
     
    2950      this.tabControl = new HeuristicLab.MainForm.WindowsForms.DragOverTabControl();
    3051      this.visualizationTabPage = new System.Windows.Forms.TabPage();
     52      this.distancesRadioButton = new System.Windows.Forms.RadioButton();
     53      this.weightsRadioButton = new System.Windows.Forms.RadioButton();
    3154      this.pictureBox = new System.Windows.Forms.PictureBox();
    3255      this.valueTabPage = new System.Windows.Forms.TabPage();
    3356      this.assignmentGroupBox = new System.Windows.Forms.GroupBox();
    3457      this.assignmentViewHost = new HeuristicLab.MainForm.WindowsForms.ViewHost();
    35       this.weightsRadioButton = new System.Windows.Forms.RadioButton();
    36       this.distancesRadioButton = new System.Windows.Forms.RadioButton();
     58      this.redrawButton = new System.Windows.Forms.Button();
    3759      ((System.ComponentModel.ISupportInitialize)(this.splitContainer)).BeginInit();
    3860      this.splitContainer.Panel1.SuspendLayout();
     
    110132      // visualizationTabPage
    111133      //
     134      this.visualizationTabPage.Controls.Add(this.redrawButton);
    112135      this.visualizationTabPage.Controls.Add(this.distancesRadioButton);
    113136      this.visualizationTabPage.Controls.Add(this.weightsRadioButton);
     
    121144      this.visualizationTabPage.UseVisualStyleBackColor = true;
    122145      //
     146      // distancesRadioButton
     147      //
     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      // weightsRadioButton
     160      //
     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      //
    123170      // pictureBox
    124171      //
     
    175222      this.assignmentViewHost.ViewType = null;
    176223      //
    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);
     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);
    200233      //
    201234      // QAPAssignmentView
     
    234267    private System.Windows.Forms.RadioButton distancesRadioButton;
    235268    private System.Windows.Forms.RadioButton weightsRadioButton;
     269    private System.Windows.Forms.Button redrawButton;
    236270  }
    237271}
Note: See TracChangeset for help on using the changeset viewer.