Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3607 was 3545, checked in by gkronber, 15 years ago

Fixed bugs in wiring of data analysis and symbolic regression problems. #938 (Data types and operators for regression problems)

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