Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/ProblemDataPage.Designer.cs @ 7953

Last change on this file since 7953 was 7953, checked in by spimming, 12 years ago

#1807:

  • added file dialog to select csv problem file
  • wizard page to select target variable
  • plugin dependencies updated
File size: 5.6 KB
Line 
1namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
2  partial class ProblemDataPage {
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 Windows Form 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.label1 = new System.Windows.Forms.Label();
27      this.txtFilePath = new System.Windows.Forms.TextBox();
28      this.btnChooseFile = new System.Windows.Forms.Button();
29      this.label2 = new System.Windows.Forms.Label();
30      this.stringConvertibleMatrixView = new HeuristicLab.Data.Views.StringConvertibleMatrixView();
31      this.SuspendLayout();
32      //
33      // wizardBanner
34      //
35      this.wizardBanner.Size = new System.Drawing.Size(640, 81);
36      this.wizardBanner.Subtitle = "Select the CSV file containing the data.";
37      this.wizardBanner.Title = "Data File";
38      //
39      // label1
40      //
41      this.label1.AutoSize = true;
42      this.label1.Location = new System.Drawing.Point(3, 90);
43      this.label1.Name = "label1";
44      this.label1.Size = new System.Drawing.Size(95, 13);
45      this.label1.TabIndex = 2;
46      this.label1.Text = "Choose a CSV file:";
47      //
48      // txtFilePath
49      //
50      this.txtFilePath.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
51            | System.Windows.Forms.AnchorStyles.Right)));
52      this.txtFilePath.Enabled = false;
53      this.txtFilePath.Location = new System.Drawing.Point(104, 87);
54      this.txtFilePath.Name = "txtFilePath";
55      this.txtFilePath.Size = new System.Drawing.Size(501, 20);
56      this.txtFilePath.TabIndex = 3;
57      //
58      // btnChooseFile
59      //
60      this.btnChooseFile.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
61      this.btnChooseFile.Location = new System.Drawing.Point(611, 85);
62      this.btnChooseFile.Name = "btnChooseFile";
63      this.btnChooseFile.Size = new System.Drawing.Size(26, 23);
64      this.btnChooseFile.TabIndex = 4;
65      this.btnChooseFile.Text = "...";
66      this.btnChooseFile.UseVisualStyleBackColor = true;
67      this.btnChooseFile.Click += new System.EventHandler(this.btnChooseFile_Click);
68      //
69      // label2
70      //
71      this.label2.AutoSize = true;
72      this.label2.Location = new System.Drawing.Point(3, 124);
73      this.label2.Name = "label2";
74      this.label2.Size = new System.Drawing.Size(72, 13);
75      this.label2.TabIndex = 5;
76      this.label2.Text = "Preview data:";
77      //
78      // stringConvertibleMatrixView
79      //
80      this.stringConvertibleMatrixView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
81            | System.Windows.Forms.AnchorStyles.Left)
82            | System.Windows.Forms.AnchorStyles.Right)));
83      this.stringConvertibleMatrixView.Caption = "StringConvertibleMatrix View";
84      this.stringConvertibleMatrixView.Content = null;
85      this.stringConvertibleMatrixView.Location = new System.Drawing.Point(6, 140);
86      this.stringConvertibleMatrixView.Name = "stringConvertibleMatrixView";
87      this.stringConvertibleMatrixView.ReadOnly = false;
88      this.stringConvertibleMatrixView.ShowRowsAndColumnsTextBox = true;
89      this.stringConvertibleMatrixView.ShowStatisticalInformation = true;
90      this.stringConvertibleMatrixView.Size = new System.Drawing.Size(631, 337);
91      this.stringConvertibleMatrixView.TabIndex = 6;
92      //
93      // ProblemDataPage
94      //
95      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
96      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
97      this.Controls.Add(this.stringConvertibleMatrixView);
98      this.Controls.Add(this.label2);
99      this.Controls.Add(this.btnChooseFile);
100      this.Controls.Add(this.txtFilePath);
101      this.Controls.Add(this.label1);
102      this.Name = "ProblemDataPage";
103      this.Size = new System.Drawing.Size(640, 480);
104      this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataPage_SetActive);
105      this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ProblemDataPage_WizardNext);
106      this.Controls.SetChildIndex(this.wizardBanner, 0);
107      this.Controls.SetChildIndex(this.label1, 0);
108      this.Controls.SetChildIndex(this.txtFilePath, 0);
109      this.Controls.SetChildIndex(this.btnChooseFile, 0);
110      this.Controls.SetChildIndex(this.label2, 0);
111      this.Controls.SetChildIndex(this.stringConvertibleMatrixView, 0);
112      this.ResumeLayout(false);
113      this.PerformLayout();
114
115    }
116
117    #endregion
118
119    private System.Windows.Forms.Label label1;
120    private System.Windows.Forms.TextBox txtFilePath;
121    private System.Windows.Forms.Button btnChooseFile;
122    private System.Windows.Forms.Label label2;
123    private Data.Views.StringConvertibleMatrixView stringConvertibleMatrixView;
124
125  }
126}
Note: See TracBrowser for help on using the repository browser.