Free cookie consent management tool by TermsFeed Policy Generator

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