[7824] | 1 | namespace HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard {
|
---|
| 2 | partial class MediumAnalysisPage {
|
---|
| 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() {
|
---|
[7912] | 26 | this.progressBar1 = new System.Windows.Forms.ProgressBar();
|
---|
[8024] | 27 | this.lblProgress = new System.Windows.Forms.Label();
|
---|
[7824] | 28 | this.SuspendLayout();
|
---|
| 29 | //
|
---|
| 30 | // wizardBanner
|
---|
| 31 | //
|
---|
[8024] | 32 | this.wizardBanner.Size = new System.Drawing.Size(640, 81);
|
---|
[7824] | 33 | this.wizardBanner.Subtitle = "Generating experiment ...";
|
---|
| 34 | this.wizardBanner.Title = "Medium Analysis";
|
---|
| 35 | //
|
---|
[7912] | 36 | // progressBar1
|
---|
| 37 | //
|
---|
[8024] | 38 | this.progressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 39 | this.progressBar1.Location = new System.Drawing.Point(30, 263);
|
---|
[7912] | 40 | this.progressBar1.Name = "progressBar1";
|
---|
[8024] | 41 | this.progressBar1.Size = new System.Drawing.Size(580, 23);
|
---|
[7912] | 42 | this.progressBar1.TabIndex = 2;
|
---|
| 43 | //
|
---|
[8024] | 44 | // lblProgress
|
---|
[7824] | 45 | //
|
---|
[8024] | 46 | this.lblProgress.Anchor = System.Windows.Forms.AnchorStyles.Left;
|
---|
| 47 | this.lblProgress.AutoSize = true;
|
---|
| 48 | this.lblProgress.Location = new System.Drawing.Point(27, 230);
|
---|
| 49 | this.lblProgress.Name = "lblProgress";
|
---|
| 50 | this.lblProgress.Size = new System.Drawing.Size(125, 13);
|
---|
| 51 | this.lblProgress.TabIndex = 3;
|
---|
| 52 | this.lblProgress.Text = "Generating experiment ...";
|
---|
[7824] | 53 | //
|
---|
| 54 | // MediumAnalysisPage
|
---|
| 55 | //
|
---|
| 56 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
[7912] | 57 | this.Controls.Add(this.progressBar1);
|
---|
[8024] | 58 | this.Controls.Add(this.lblProgress);
|
---|
[7824] | 59 | this.Name = "MediumAnalysisPage";
|
---|
[8024] | 60 | this.Size = new System.Drawing.Size(640, 480);
|
---|
[7912] | 61 | this.SetActive += new System.ComponentModel.CancelEventHandler(this.MediumAnalysisPage_SetActive);
|
---|
[8024] | 62 | this.WizardCancel += new System.ComponentModel.CancelEventHandler(this.MediumAnalysisPage_WizardCancel);
|
---|
[7824] | 63 | this.WizardBack += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.MediumAnalysisPage_WizardBack);
|
---|
[8024] | 64 | this.Controls.SetChildIndex(this.lblProgress, 0);
|
---|
[7912] | 65 | this.Controls.SetChildIndex(this.progressBar1, 0);
|
---|
[7824] | 66 | this.Controls.SetChildIndex(this.wizardBanner, 0);
|
---|
| 67 | this.ResumeLayout(false);
|
---|
| 68 | this.PerformLayout();
|
---|
| 69 |
|
---|
| 70 | }
|
---|
| 71 |
|
---|
| 72 | #endregion
|
---|
| 73 |
|
---|
[7912] | 74 | private System.Windows.Forms.ProgressBar progressBar1;
|
---|
[8024] | 75 | private System.Windows.Forms.Label lblProgress;
|
---|
[7912] | 76 |
|
---|
[7824] | 77 | }
|
---|
| 78 | }
|
---|