[7808] | 1 | namespace 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() {
|
---|
[7953] | 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();
|
---|
[7808] | 31 | this.SuspendLayout();
|
---|
| 32 | //
|
---|
[7816] | 33 | // wizardBanner
|
---|
[7808] | 34 | //
|
---|
[7816] | 35 | this.wizardBanner.Size = new System.Drawing.Size(640, 81);
|
---|
[7953] | 36 | this.wizardBanner.Subtitle = "Select the CSV file containing the data.";
|
---|
| 37 | this.wizardBanner.Title = "Data File";
|
---|
[7808] | 38 | //
|
---|
[7953] | 39 | // label1
|
---|
[7808] | 40 | //
|
---|
[7953] | 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:";
|
---|
[7808] | 47 | //
|
---|
[7953] | 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 | //
|
---|
[7808] | 93 | // ProblemDataPage
|
---|
| 94 | //
|
---|
| 95 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7816] | 96 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
[7953] | 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);
|
---|
[7808] | 102 | this.Name = "ProblemDataPage";
|
---|
[7816] | 103 | this.Size = new System.Drawing.Size(640, 480);
|
---|
[7808] | 104 | this.SetActive += new System.ComponentModel.CancelEventHandler(this.ProblemDataPage_SetActive);
|
---|
[7824] | 105 | this.WizardNext += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.ProblemDataPage_WizardNext);
|
---|
[7816] | 106 | this.Controls.SetChildIndex(this.wizardBanner, 0);
|
---|
[7953] | 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);
|
---|
[7808] | 112 | this.ResumeLayout(false);
|
---|
[7953] | 113 | this.PerformLayout();
|
---|
[7808] | 114 |
|
---|
| 115 | }
|
---|
| 116 |
|
---|
| 117 | #endregion
|
---|
| 118 |
|
---|
[7953] | 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;
|
---|
[7808] | 124 |
|
---|
| 125 | }
|
---|
| 126 | }
|
---|