Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.PTSP.Views/3.3/EuclideanPTSPDataView.Designer.cs @ 17264

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

#2521: Finished refactoring pTSP

File size: 5.6 KB
Line 
1namespace HeuristicLab.Problems.PTSP.Views {
2  partial class EuclideanPTSPDataView {
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.tabControl = new System.Windows.Forms.TabControl();
27      this.coordinatesTabPage = new System.Windows.Forms.TabPage();
28      this.probabilitiesTabPage = new System.Windows.Forms.TabPage();
29      this.probabilitiesView = new HeuristicLab.Data.Views.StringConvertibleArrayView();
30      ((System.ComponentModel.ISupportInitialize)(this.coordinatesSplitContainer)).BeginInit();
31      this.coordinatesSplitContainer.Panel1.SuspendLayout();
32      this.coordinatesSplitContainer.Panel2.SuspendLayout();
33      this.coordinatesSplitContainer.SuspendLayout();
34      ((System.ComponentModel.ISupportInitialize)(this.coordinatesPictureBox)).BeginInit();
35      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
36      this.tabControl.SuspendLayout();
37      this.probabilitiesTabPage.SuspendLayout();
38      this.SuspendLayout();
39      //
40      // coordinatesSplitContainer
41      //
42      //
43      // coordinatesSplitContainer.Panel1
44      //
45      this.coordinatesSplitContainer.Panel1.Controls.Add(this.tabControl);
46      //
47      // coordinatesMatrixView
48      //
49      this.coordinatesMatrixView.ShowStatisticalInformation = false;
50      //
51      // nameTextBox
52      //
53      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
54      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
55      //
56      // tabControl
57      //
58      this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
59            | System.Windows.Forms.AnchorStyles.Left)
60            | System.Windows.Forms.AnchorStyles.Right)));
61      this.tabControl.Controls.Add(this.coordinatesTabPage);
62      this.tabControl.Controls.Add(this.probabilitiesTabPage);
63      this.tabControl.Location = new System.Drawing.Point(0, 30);
64      this.tabControl.Name = "tabControl";
65      this.tabControl.SelectedIndex = 0;
66      this.tabControl.Size = new System.Drawing.Size(256, 540);
67      this.tabControl.TabIndex = 4;
68      //
69      // coordinatesTabPage
70      //
71      this.coordinatesTabPage.Location = new System.Drawing.Point(4, 22);
72      this.coordinatesTabPage.Name = "coordinatesTabPage";
73      this.coordinatesTabPage.Padding = new System.Windows.Forms.Padding(3);
74      this.coordinatesTabPage.Size = new System.Drawing.Size(248, 514);
75      this.coordinatesTabPage.TabIndex = 0;
76      this.coordinatesTabPage.Text = "Coordinates";
77      this.coordinatesTabPage.UseVisualStyleBackColor = true;
78      //
79      // probabilitiesTabPage
80      //
81      this.probabilitiesTabPage.Controls.Add(this.probabilitiesView);
82      this.probabilitiesTabPage.Location = new System.Drawing.Point(4, 22);
83      this.probabilitiesTabPage.Name = "probabilitiesTabPage";
84      this.probabilitiesTabPage.Padding = new System.Windows.Forms.Padding(3);
85      this.probabilitiesTabPage.Size = new System.Drawing.Size(248, 514);
86      this.probabilitiesTabPage.TabIndex = 1;
87      this.probabilitiesTabPage.Text = "Probabilities";
88      this.probabilitiesTabPage.UseVisualStyleBackColor = true;
89      //
90      // probabilitiesView
91      //
92      this.probabilitiesView.Caption = "StringConvertibleArray View";
93      this.probabilitiesView.Content = null;
94      this.probabilitiesView.Dock = System.Windows.Forms.DockStyle.Fill;
95      this.probabilitiesView.Location = new System.Drawing.Point(3, 3);
96      this.probabilitiesView.Name = "probabilitiesView";
97      this.probabilitiesView.ReadOnly = false;
98      this.probabilitiesView.Size = new System.Drawing.Size(242, 508);
99      this.probabilitiesView.TabIndex = 0;
100      //
101      // EuclideanPTSPDataView
102      //
103      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
104      this.Name = "EuclideanPTSPDataView";
105      this.coordinatesSplitContainer.Panel1.ResumeLayout(false);
106      this.coordinatesSplitContainer.Panel1.PerformLayout();
107      this.coordinatesSplitContainer.Panel2.ResumeLayout(false);
108      ((System.ComponentModel.ISupportInitialize)(this.coordinatesSplitContainer)).EndInit();
109      this.coordinatesSplitContainer.ResumeLayout(false);
110      ((System.ComponentModel.ISupportInitialize)(this.coordinatesPictureBox)).EndInit();
111      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
112      this.tabControl.ResumeLayout(false);
113      this.probabilitiesTabPage.ResumeLayout(false);
114      this.ResumeLayout(false);
115      this.PerformLayout();
116
117    }
118
119    #endregion
120
121    private System.Windows.Forms.TabControl tabControl;
122    private System.Windows.Forms.TabPage coordinatesTabPage;
123    private System.Windows.Forms.TabPage probabilitiesTabPage;
124    private Data.Views.StringConvertibleArrayView probabilitiesView;
125  }
126}
Note: See TracBrowser for help on using the repository browser.