Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Problems.PTSP.Views/3.3/ProbabilisticTSPDataView.Designer.cs

Last change on this file was 17533, checked in by abeham, 4 years ago

#2521: Unified architecture

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