Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.DataAnalysis.Views/3.3/DataAnalysisProblemDataView.Designer.cs @ 3484

Last change on this file since 3484 was 3442, checked in by gkronber, 14 years ago

Implemented views for DataAnalysisProblems and DataAnalysisSolutions. #938 (Data types and operators for regression problems)

File size: 3.8 KB
Line 
1namespace HeuristicLab.Problems.DataAnalysis.Views {
2  partial class DataAnalysisProblemDataView {
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.variableCollectionView = new HeuristicLab.Core.Views.VariableCollectionView();
27      this.importButton = new System.Windows.Forms.Button();
28      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).BeginInit();
29      this.SuspendLayout();
30      //
31      // nameTextBox
32      //
33      this.errorProvider.SetIconAlignment(this.nameTextBox, System.Windows.Forms.ErrorIconAlignment.MiddleLeft);
34      this.errorProvider.SetIconPadding(this.nameTextBox, 2);
35      //
36      // variableCollectionView
37      //
38      this.variableCollectionView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
39                  | System.Windows.Forms.AnchorStyles.Left)
40                  | System.Windows.Forms.AnchorStyles.Right)));
41      this.variableCollectionView.Caption = "VariableCollection";
42      this.variableCollectionView.Content = null;
43      this.variableCollectionView.Location = new System.Drawing.Point(0, 52);
44      this.variableCollectionView.Name = "variableCollectionView";
45      this.variableCollectionView.ReadOnly = false;
46      this.variableCollectionView.Size = new System.Drawing.Size(588, 366);
47      this.variableCollectionView.TabIndex = 0;
48      //
49      // importButton
50      //
51      this.importButton.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
52                  | System.Windows.Forms.AnchorStyles.Right)));
53      this.importButton.Location = new System.Drawing.Point(6, 424);
54      this.importButton.Name = "importButton";
55      this.importButton.Size = new System.Drawing.Size(579, 23);
56      this.importButton.TabIndex = 4;
57      this.importButton.Text = "Import from CSV file";
58      this.importButton.UseVisualStyleBackColor = true;
59      this.importButton.Click += new System.EventHandler(this.importButton_Click);
60      //
61      // ProblemDataView
62      //
63      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
64      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
65      this.Controls.Add(this.variableCollectionView);
66      this.Controls.Add(this.importButton);
67      this.Name = "ProblemDataView";
68      this.Size = new System.Drawing.Size(588, 450);
69      this.Controls.SetChildIndex(this.importButton, 0);
70      this.Controls.SetChildIndex(this.variableCollectionView, 0);
71      this.Controls.SetChildIndex(this.nameLabel, 0);
72      this.Controls.SetChildIndex(this.descriptionLabel, 0);
73      this.Controls.SetChildIndex(this.nameTextBox, 0);
74      this.Controls.SetChildIndex(this.descriptionTextBox, 0);
75      ((System.ComponentModel.ISupportInitialize)(this.errorProvider)).EndInit();
76      this.ResumeLayout(false);
77      this.PerformLayout();
78
79    }
80
81    #endregion
82
83    private HeuristicLab.Core.Views.VariableCollectionView variableCollectionView;
84    private System.Windows.Forms.Button importButton;
85  }
86}
Note: See TracBrowser for help on using the repository browser.