Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/10/10 11:32:52 (14 years ago)
Author:
svonolfe
Message:

Improved VRP visualization (#1039)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.VehicleRouting.Views/3.3/VehicleRoutingProblemView.Designer.cs

    r3938 r4185  
    2525    private void InitializeComponent() {
    2626      this.importButton = new System.Windows.Forms.Button();
     27      this.tabControl1 = new System.Windows.Forms.TabControl();
     28      this.tabPage1 = new System.Windows.Forms.TabPage();
     29      this.parameterCollectionView = new HeuristicLab.Core.Views.ParameterCollectionView();
     30      this.tabPage2 = new System.Windows.Forms.TabPage();
     31      this.vrpSolutionView = new HeuristicLab.Problems.VehicleRouting.Views.VRPSolutionView();
    2732      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
     33      this.tabControl1.SuspendLayout();
     34      this.tabPage1.SuspendLayout();
     35      this.tabPage2.SuspendLayout();
    2836      this.SuspendLayout();
    29       //
    30       // parameterCollectionView
    31       //
    32       this.parameterCollectionView.Location = new System.Drawing.Point(0, 88);
    33       this.parameterCollectionView.Size = new System.Drawing.Size(490, 334);
    3437      //
    3538      // nameTextBox
     
    5053      this.importButton.Click += new System.EventHandler(this.importButton_Click);
    5154      //
     55      // tabControl1
     56      //
     57      this.tabControl1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
     58                  | System.Windows.Forms.AnchorStyles.Left)
     59                  | System.Windows.Forms.AnchorStyles.Right)));
     60      this.tabControl1.Controls.Add(this.tabPage1);
     61      this.tabControl1.Controls.Add(this.tabPage2);
     62      this.tabControl1.Location = new System.Drawing.Point(0, 84);
     63      this.tabControl1.Name = "tabControl1";
     64      this.tabControl1.SelectedIndex = 0;
     65      this.tabControl1.Size = new System.Drawing.Size(490, 338);
     66      this.tabControl1.TabIndex = 6;
     67      //
     68      // tabPage1
     69      //
     70      this.tabPage1.Controls.Add(this.parameterCollectionView);
     71      this.tabPage1.Location = new System.Drawing.Point(4, 22);
     72      this.tabPage1.Name = "tabPage1";
     73      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     74      this.tabPage1.Size = new System.Drawing.Size(482, 312);
     75      this.tabPage1.TabIndex = 0;
     76      this.tabPage1.Text = "Parameters";
     77      this.tabPage1.UseVisualStyleBackColor = true;
     78      //
     79      // parameterCollectionView
     80      //
     81      this.parameterCollectionView.Caption = "ParameterCollection View";
     82      this.parameterCollectionView.Content = null;
     83      this.parameterCollectionView.Dock = System.Windows.Forms.DockStyle.Fill;
     84      this.parameterCollectionView.Location = new System.Drawing.Point(3, 3);
     85      this.parameterCollectionView.Name = "parameterCollectionView";
     86      this.parameterCollectionView.ReadOnly = false;
     87      this.parameterCollectionView.Size = new System.Drawing.Size(476, 306);
     88      this.parameterCollectionView.TabIndex = 1;
     89      //
     90      // tabPage2
     91      //
     92      this.tabPage2.Controls.Add(this.vrpSolutionView);
     93      this.tabPage2.Location = new System.Drawing.Point(4, 22);
     94      this.tabPage2.Name = "tabPage2";
     95      this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
     96      this.tabPage2.Size = new System.Drawing.Size(482, 312);
     97      this.tabPage2.TabIndex = 1;
     98      this.tabPage2.Text = "Visualization";
     99      this.tabPage2.UseVisualStyleBackColor = true;
     100      //
     101      // vrpSolutionView
     102      //
     103      this.vrpSolutionView.Caption = "VRPSolution View";
     104      this.vrpSolutionView.Content = null;
     105      this.vrpSolutionView.Dock = System.Windows.Forms.DockStyle.Fill;
     106      this.vrpSolutionView.Location = new System.Drawing.Point(3, 3);
     107      this.vrpSolutionView.Name = "vrpSolutionView";
     108      this.vrpSolutionView.ReadOnly = false;
     109      this.vrpSolutionView.Size = new System.Drawing.Size(476, 306);
     110      this.vrpSolutionView.TabIndex = 0;
     111      //
    52112      // VehicleRoutingProblemView
    53113      //
    54114      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    55115      this.Controls.Add(this.importButton);
     116      this.Controls.Add(this.tabControl1);
    56117      this.Name = "VehicleRoutingProblemView";
    57118      this.Size = new System.Drawing.Size(490, 422);
     119      this.Controls.SetChildIndex(this.tabControl1, 0);
    58120      this.Controls.SetChildIndex(this.importButton, 0);
    59121      this.Controls.SetChildIndex(this.nameTextBox, 0);
     
    61123      this.Controls.SetChildIndex(this.descriptionLabel, 0);
    62124      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
    63       this.Controls.SetChildIndex(this.parameterCollectionView, 0);
    64125      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
     126      this.tabControl1.ResumeLayout(false);
     127      this.tabPage1.ResumeLayout(false);
     128      this.tabPage2.ResumeLayout(false);
    65129      this.ResumeLayout(false);
    66130      this.PerformLayout();
     
    71135
    72136    private System.Windows.Forms.Button importButton;
     137    private System.Windows.Forms.TabControl tabControl1;
     138    private System.Windows.Forms.TabPage tabPage1;
     139    private System.Windows.Forms.TabPage tabPage2;
     140    private Core.Views.ParameterCollectionView parameterCollectionView;
     141    private VRPSolutionView vrpSolutionView;
    73142  }
    74143}
Note: See TracChangeset for help on using the changeset viewer.