Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.TravelingSalesman.Views/3.3/EuclideanTSPDataView.Designer.cs @ 17251

Last change on this file since 17251 was 17251, checked in by abeham, 5 years ago

#2521: finished refactoring TSP

File size: 4.1 KB
Line 
1namespace HeuristicLab.Problems.TravelingSalesman.Views {
2  partial class EuclideanTSPDataView {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Component Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
26      this.roundingModeLabel = new System.Windows.Forms.Label();
27      this.roundingModeComboBox = new System.Windows.Forms.ComboBox();
28      ((System.ComponentModel.ISupportInitialize)(this.coordinatesSplitContainer)).BeginInit();
29      this.coordinatesSplitContainer.Panel1.SuspendLayout();
30      this.coordinatesSplitContainer.Panel2.SuspendLayout();
31      this.coordinatesSplitContainer.SuspendLayout();
32      ((System.ComponentModel.ISupportInitialize)(this.coordinatesPictureBox)).BeginInit();
33      this.SuspendLayout();
34      //
35      // coordinatesSplitContainer
36      //
37      //
38      // coordinatesSplitContainer.Panel1
39      //
40      this.coordinatesSplitContainer.Panel1.Controls.Add(this.roundingModeComboBox);
41      this.coordinatesSplitContainer.Panel1.Controls.Add(this.roundingModeLabel);
42      //
43      // coordinatesMatrixView
44      //
45      this.coordinatesMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
46            | System.Windows.Forms.AnchorStyles.Left)
47            | System.Windows.Forms.AnchorStyles.Right)));
48      this.coordinatesMatrixView.Dock = System.Windows.Forms.DockStyle.None;
49      this.coordinatesMatrixView.Location = new System.Drawing.Point(0, 30);
50      this.coordinatesMatrixView.Size = new System.Drawing.Size(256, 598);
51      //
52      // roundingModeLabel
53      //
54      this.roundingModeLabel.AutoSize = true;
55      this.roundingModeLabel.Location = new System.Drawing.Point(3, 6);
56      this.roundingModeLabel.Name = "roundingModeLabel";
57      this.roundingModeLabel.Size = new System.Drawing.Size(101, 13);
58      this.roundingModeLabel.TabIndex = 2;
59      this.roundingModeLabel.Text = "Distance Rounding:";
60      //
61      // roundingModeComboBox
62      //
63      this.roundingModeComboBox.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
64            | System.Windows.Forms.AnchorStyles.Right)));
65      this.roundingModeComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
66      this.roundingModeComboBox.FormattingEnabled = true;
67      this.roundingModeComboBox.Location = new System.Drawing.Point(110, 3);
68      this.roundingModeComboBox.Name = "roundingModeComboBox";
69      this.roundingModeComboBox.Size = new System.Drawing.Size(146, 21);
70      this.roundingModeComboBox.TabIndex = 3;
71      //
72      // EuclideanTSPDataView
73      //
74      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
75      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
76      this.Name = "EuclideanTSPDataView";
77      this.coordinatesSplitContainer.Panel1.ResumeLayout(false);
78      this.coordinatesSplitContainer.Panel1.PerformLayout();
79      this.coordinatesSplitContainer.Panel2.ResumeLayout(false);
80      ((System.ComponentModel.ISupportInitialize)(this.coordinatesSplitContainer)).EndInit();
81      this.coordinatesSplitContainer.ResumeLayout(false);
82      ((System.ComponentModel.ISupportInitialize)(this.coordinatesPictureBox)).EndInit();
83      this.ResumeLayout(false);
84
85    }
86
87    #endregion
88
89    private System.Windows.Forms.ComboBox roundingModeComboBox;
90    private System.Windows.Forms.Label roundingModeLabel;
91  }
92}
Note: See TracBrowser for help on using the repository browser.