Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/22/10 01:00:52 (14 years ago)
Author:
swagner
Message:

Added TSP instance visualization (#924).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.TSP.Views/3.3/TSPView.Designer.cs

    r3151 r3153  
    4747    private void InitializeComponent() {
    4848      this.importButton = new System.Windows.Forms.Button();
     49      this.tabControl = new System.Windows.Forms.TabControl();
     50      this.parametersTabPage = new System.Windows.Forms.TabPage();
     51      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
     52      this.visualizationTabPage = new System.Windows.Forms.TabPage();
     53      this.pathTSPTourView = new HeuristicLab.Problems.TSP.Views.PathTSPTourView();
    4954      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     55      this.tabControl.SuspendLayout();
     56      this.parametersTabPage.SuspendLayout();
     57      this.visualizationTabPage.SuspendLayout();
    5058      this.SuspendLayout();
    51       //
    52       // parameterCollectionView
    53       //
    54       this.parameterCollectionView.Size = new System.Drawing.Size(529, 341);
    5559      //
    5660      // nameTextBox
     
    7680      this.importButton.Click += new System.EventHandler(this.importButton_Click);
    7781      //
     82      // tabControl
     83      //
     84      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     85                  | System.Windows.Forms.AnchorStyles.Left)
     86                  | System.Windows.Forms.AnchorStyles.Right)));
     87      this.tabControl.Controls.Add(this.parametersTabPage);
     88      this.tabControl.Controls.Add(this.visualizationTabPage);
     89      this.tabControl.Location = new System.Drawing.Point(0, 52);
     90      this.tabControl.Name = "tabControl";
     91      this.tabControl.SelectedIndex = 0;
     92      this.tabControl.Size = new System.Drawing.Size(529, 341);
     93      this.tabControl.TabIndex = 4;
     94      //
     95      // parametersTabPage
     96      //
     97      this.parametersTabPage.Controls.Add(this.parameterCollectionView);
     98      this.parametersTabPage.Location = new System.Drawing.Point(4, 22);
     99      this.parametersTabPage.Name = "parametersTabPage";
     100      this.parametersTabPage.Padding = new System.Windows.Forms.Padding(3);
     101      this.parametersTabPage.Size = new System.Drawing.Size(521, 315);
     102      this.parametersTabPage.TabIndex = 0;
     103      this.parametersTabPage.Text = "Parameters";
     104      this.parametersTabPage.UseVisualStyleBackColor = true;
     105      //
     106      // parameterCollectionView
     107      //
     108      this.parameterCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     109                  | System.Windows.Forms.AnchorStyles.Left)
     110                  | System.Windows.Forms.AnchorStyles.Right)));
     111      this.parameterCollectionView.Caption = "ParameterCollection";
     112      this.parameterCollectionView.Content = null;
     113      this.parameterCollectionView.Location = new System.Drawing.Point(6, 6);
     114      this.parameterCollectionView.Name = "parameterCollectionView";
     115      this.parameterCollectionView.Size = new System.Drawing.Size(509, 303);
     116      this.parameterCollectionView.TabIndex = 0;
     117      //
     118      // visualizationTabPage
     119      //
     120      this.visualizationTabPage.Controls.Add(this.pathTSPTourView);
     121      this.visualizationTabPage.Location = new System.Drawing.Point(4, 22);
     122      this.visualizationTabPage.Name = "visualizationTabPage";
     123      this.visualizationTabPage.Padding = new System.Windows.Forms.Padding(3);
     124      this.visualizationTabPage.Size = new System.Drawing.Size(521, 315);
     125      this.visualizationTabPage.TabIndex = 1;
     126      this.visualizationTabPage.Text = "Visualization";
     127      this.visualizationTabPage.UseVisualStyleBackColor = true;
     128      //
     129      // pathTSPTourView
     130      //
     131      this.pathTSPTourView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     132                  | System.Windows.Forms.AnchorStyles.Left)
     133                  | System.Windows.Forms.AnchorStyles.Right)));
     134      this.pathTSPTourView.Caption = "View";
     135      this.pathTSPTourView.Content = null;
     136      this.pathTSPTourView.Location = new System.Drawing.Point(6, 6);
     137      this.pathTSPTourView.Name = "pathTSPTourView";
     138      this.pathTSPTourView.Size = new System.Drawing.Size(509, 303);
     139      this.pathTSPTourView.TabIndex = 0;
     140      //
    78141      // TSPView
    79142      //
    80143      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    81144      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     145      this.Controls.Add(this.tabControl);
    82146      this.Controls.Add(this.importButton);
    83147      this.Name = "TSPView";
    84148      this.Size = new System.Drawing.Size(529, 422);
    85149      this.Controls.SetChildIndex(this.importButton, 0);
    86       this.Controls.SetChildIndex(this.parameterCollectionView, 0);
     150      this.Controls.SetChildIndex(this.tabControl, 0);
    87151      this.Controls.SetChildIndex(this.nameLabel, 0);
    88152      this.Controls.SetChildIndex(this.descriptionLabel, 0);
     
    90154      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    91155      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     156      this.tabControl.ResumeLayout(false);
     157      this.parametersTabPage.ResumeLayout(false);
     158      this.visualizationTabPage.ResumeLayout(false);
    92159      this.ResumeLayout(false);
    93160      this.PerformLayout();
     
    98165
    99166    private System.Windows.Forms.Button importButton;
     167    private System.Windows.Forms.TabControl tabControl;
     168    private System.Windows.Forms.TabPage parametersTabPage;
     169    private System.Windows.Forms.TabPage visualizationTabPage;
     170    private HeuristicLab.Core.Views.ParameterCollectionView parameterCollectionView;
     171    private PathTSPTourView pathTSPTourView;
    100172
    101173  }
Note: See TracChangeset for help on using the changeset viewer.