Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
04/21/21 15:27:58 (3 years ago)
Author:
mkommend
Message:

#2521: Added first version (draft) of ResultsProducingItem, an according view and a refactored ProblemView.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2521_ProblemRefactoring/HeuristicLab.Problems.QuadraticAssignment.Views/3.3/QuadraticAssignmentProblemView.Designer.cs

    r17226 r17953  
    1 #region License Information
    2 /* HeuristicLab
    3  * Copyright (C) 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
     1//#region License Information
     2///* HeuristicLab
     3// * Copyright (C) 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
    2121
    22 namespace HeuristicLab.Problems.QuadraticAssignment.Views {
    23   partial class QuadraticAssignmentProblemView {
    24     /// <summary>
    25     /// Required designer variable.
    26     /// </summary>
    27     private System.ComponentModel.IContainer components = null;
     22//namespace HeuristicLab.Problems.QuadraticAssignment.Views {
     23//  partial class QuadraticAssignmentProblemView {
     24//    /// <summary>
     25//    /// Required designer variable.
     26//    /// </summary>
     27//    private System.ComponentModel.IContainer components = null;
    2828
    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     }
     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//    }
    3939
    40     #region Component Designer generated code
     40//    #region Component Designer generated code
    4141
    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.tabControl = new System.Windows.Forms.TabControl();
    48       this.problemTabPage = new System.Windows.Forms.TabPage();
    49       this.visualizationTabPage = new System.Windows.Forms.TabPage();
    50       this.qapView = new HeuristicLab.Problems.QuadraticAssignment.Views.QAPVisualizationControl();
    51       ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).BeginInit();
    52       this.problemInstanceSplitContainer.Panel1.SuspendLayout();
    53       this.problemInstanceSplitContainer.Panel2.SuspendLayout();
    54       this.problemInstanceSplitContainer.SuspendLayout();
    55       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
    56       this.tabControl.SuspendLayout();
    57       this.problemTabPage.SuspendLayout();
    58       this.visualizationTabPage.SuspendLayout();
    59       this.SuspendLayout();
    60       //
    61       // problemInstanceSplitContainer
    62       //
    63       //
    64       // problemInstanceSplitContainer.Panel2
    65       //
    66       this.problemInstanceSplitContainer.Panel2.Controls.Add(this.tabControl);
    67       //
    68       // parameterCollectionView
    69       //
    70       this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
    71       this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
    72       this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
    73       this.parameterCollectionView.Size = new System.Drawing.Size(497, 274);
    74       //
    75       // nameTextBox
    76       //
    77       this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
    78       this.errorProvider.SetIconPadding(this.nameTextBox, 2);
    79       //
    80       // tabControl
    81       //
    82       this.tabControl.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.tabControl.Controls.Add(this.problemTabPage);
    86       this.tabControl.Controls.Add(this.visualizationTabPage);
    87       this.tabControl.Location = new System.Drawing.Point(0, 27);
    88       this.tabControl.Name = "tabControl";
    89       this.tabControl.SelectedIndex = 0;
    90       this.tabControl.Size = new System.Drawing.Size(511, 306);
    91       this.tabControl.TabIndex = 8;
    92       //
    93       // problemTabPage
    94       //
    95       this.problemTabPage.BackColor = System.Drawing.SystemColors.Window;
    96       this.problemTabPage.Controls.Add(this.parameterCollectionView);
    97       this.problemTabPage.Location = new System.Drawing.Point(4, 22);
    98       this.problemTabPage.Name = "problemTabPage";
    99       this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
    100       this.problemTabPage.Size = new System.Drawing.Size(503, 280);
    101       this.problemTabPage.TabIndex = 0;
    102       this.problemTabPage.Text = "Problem";
    103       //
    104       // visualizationTabPage
    105       //
    106       this.visualizationTabPage.BackColor = System.Drawing.SystemColors.Window;
    107       this.visualizationTabPage.Controls.Add(this.qapView);
    108       this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
    109       this.visualizationTabPage.Name = "visualizationTabPage";
    110       this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
    111       this.visualizationTabPage.Size = new System.Drawing.Size(503, 280);
    112       this.visualizationTabPage.TabIndex = 1;
    113       this.visualizationTabPage.Text = "Visualization";
    114       //
    115       // qapView
    116       //
    117       this.qapView.Assignment = null;
    118       this.qapView.Distances = null;
    119       this.qapView.Dock = System.Windows.Forms.DockStyle.Fill;
    120       this.qapView.Location = new System.Drawing.Point(3, 3);
    121       this.qapView.Name = "qapView";
    122       this.qapView.Size = new System.Drawing.Size(497, 274);
    123       this.qapView.TabIndex = 0;
    124       this.qapView.Weights = null;
    125       //
    126       // QuadraticAssignmentProblemView
    127       //
    128       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
    129       this.Name = "QuadraticAssignmentProblemView";
    130       this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
    131       this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
    132       this.problemInstanceSplitContainer.Panel2.PerformLayout();
    133       ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
    134       this.problemInstanceSplitContainer.ResumeLayout(false);
    135       ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
    136       this.tabControl.ResumeLayout(false);
    137       this.problemTabPage.ResumeLayout(false);
    138       this.visualizationTabPage.ResumeLayout(false);
    139       this.ResumeLayout(false);
     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.tabControl = new System.Windows.Forms.TabControl();
     48//      this.problemTabPage = new System.Windows.Forms.TabPage();
     49//      this.visualizationTabPage = new System.Windows.Forms.TabPage();
     50//      this.qapView = new HeuristicLab.Problems.QuadraticAssignment.Views.QAPVisualizationControl();
     51//      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).BeginInit();
     52//      this.problemInstanceSplitContainer.Panel1.SuspendLayout();
     53//      this.problemInstanceSplitContainer.Panel2.SuspendLayout();
     54//      this.problemInstanceSplitContainer.SuspendLayout();
     55//      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     56//      this.tabControl.SuspendLayout();
     57//      this.problemTabPage.SuspendLayout();
     58//      this.visualizationTabPage.SuspendLayout();
     59//      this.SuspendLayout();
     60//      //
     61//      // problemInstanceSplitContainer
     62//      //
     63//      //
     64//      // problemInstanceSplitContainer.Panel2
     65//      //
     66//      this.problemInstanceSplitContainer.Panel2.Controls.Add(this.tabControl);
     67//      //
     68//      // parameterCollectionView
     69//      //
     70//      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)));
     71//      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
     72//      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
     73//      this.parameterCollectionView.Size = new System.Drawing.Size(497, 274);
     74//      //
     75//      // nameTextBox
     76//      //
     77//      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
     78//      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
     79//      //
     80//      // tabControl
     81//      //
     82//      this.tabControl.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.tabControl.Controls.Add(this.problemTabPage);
     86//      this.tabControl.Controls.Add(this.visualizationTabPage);
     87//      this.tabControl.Location = new System.Drawing.Point(0, 27);
     88//      this.tabControl.Name = "tabControl";
     89//      this.tabControl.SelectedIndex = 0;
     90//      this.tabControl.Size = new System.Drawing.Size(511, 306);
     91//      this.tabControl.TabIndex = 8;
     92//      //
     93//      // problemTabPage
     94//      //
     95//      this.problemTabPage.BackColor = System.Drawing.SystemColors.Window;
     96//      this.problemTabPage.Controls.Add(this.parameterCollectionView);
     97//      this.problemTabPage.Location = new System.Drawing.Point(4, 22);
     98//      this.problemTabPage.Name = "problemTabPage";
     99//      this.problemTabPage.Padding = new System.Windows.Forms.Padding(3);
     100//      this.problemTabPage.Size = new System.Drawing.Size(503, 280);
     101//      this.problemTabPage.TabIndex = 0;
     102//      this.problemTabPage.Text = "Problem";
     103//      //
     104//      // visualizationTabPage
     105//      //
     106//      this.visualizationTabPage.BackColor = System.Drawing.SystemColors.Window;
     107//      this.visualizationTabPage.Controls.Add(this.qapView);
     108//      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
     109//      this.visualizationTabPage.Name = "visualizationTabPage";
     110//      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
     111//      this.visualizationTabPage.Size = new System.Drawing.Size(503, 280);
     112//      this.visualizationTabPage.TabIndex = 1;
     113//      this.visualizationTabPage.Text = "Visualization";
     114//      //
     115//      // qapView
     116//      //
     117//      this.qapView.Assignment = null;
     118//      this.qapView.Distances = null;
     119//      this.qapView.Dock = System.Windows.Forms.DockStyle.Fill;
     120//      this.qapView.Location = new System.Drawing.Point(3, 3);
     121//      this.qapView.Name = "qapView";
     122//      this.qapView.Size = new System.Drawing.Size(497, 274);
     123//      this.qapView.TabIndex = 0;
     124//      this.qapView.Weights = null;
     125//      //
     126//      // QuadraticAssignmentProblemView
     127//      //
     128//      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
     129//      this.Name = "QuadraticAssignmentProblemView";
     130//      this.problemInstanceSplitContainer.Panel1.ResumeLayout(false);
     131//      this.problemInstanceSplitContainer.Panel2.ResumeLayout(false);
     132//      this.problemInstanceSplitContainer.Panel2.PerformLayout();
     133//      ((System.ComponentModel.ISupportInitialize)(this.problemInstanceSplitContainer)).EndInit();
     134//      this.problemInstanceSplitContainer.ResumeLayout(false);
     135//      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     136//      this.tabControl.ResumeLayout(false);
     137//      this.problemTabPage.ResumeLayout(false);
     138//      this.visualizationTabPage.ResumeLayout(false);
     139//      this.ResumeLayout(false);
    140140
    141     }
     141//    }
    142142
    143     #endregion
     143//    #endregion
    144144
    145     private System.Windows.Forms.TabControl tabControl;
    146     private System.Windows.Forms.TabPage problemTabPage;
    147     private System.Windows.Forms.TabPage visualizationTabPage;
    148     private QAPVisualizationControl qapView;
    149   }
    150 }
     145//    private System.Windows.Forms.TabControl tabControl;
     146//    private System.Windows.Forms.TabPage problemTabPage;
     147//    private System.Windows.Forms.TabPage visualizationTabPage;
     148//    private QAPVisualizationControl qapView;
     149//  }
     150//}
Note: See TracChangeset for help on using the changeset viewer.