Free cookie consent management tool by TermsFeed Policy Generator

source: branches/DataAnalysisService/HeuristicLab.ExperimentGeneration.DataAnalysis.ExperimentWizard/3.3/MediumAnalysisPage.Designer.cs @ 7912

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

#1807:

  • adapted plugin frame
  • added new wizard page to view generated experiment
  • generate experiments in backgroundworker
File size: 2.7 KB
Line 
1namespace 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() {
26      this.progressBar1 = new System.Windows.Forms.ProgressBar();
27      this.label1 = new System.Windows.Forms.Label();
28      this.SuspendLayout();
29      //
30      // wizardBanner
31      //
32      this.wizardBanner.Subtitle = "Generating experiment ...";
33      this.wizardBanner.Title = "Medium Analysis";
34      //
35      // progressBar1
36      //
37      this.progressBar1.Anchor = System.Windows.Forms.AnchorStyles.None;
38      this.progressBar1.Location = new System.Drawing.Point(0, 143);
39      this.progressBar1.Name = "progressBar1";
40      this.progressBar1.Size = new System.Drawing.Size(320, 23);
41      this.progressBar1.TabIndex = 2;
42      //
43      // label1
44      //
45      this.label1.AutoSize = true;
46      this.label1.Location = new System.Drawing.Point(0, 124);
47      this.label1.Name = "label1";
48      this.label1.Size = new System.Drawing.Size(35, 13);
49      this.label1.TabIndex = 3;
50      this.label1.Text = "label1";
51      //
52      // MediumAnalysisPage
53      //
54      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
55      this.Controls.Add(this.label1);
56      this.Controls.Add(this.progressBar1);
57      this.Name = "MediumAnalysisPage";
58      this.SetActive += new System.ComponentModel.CancelEventHandler(this.MediumAnalysisPage_SetActive);
59      this.WizardBack += new HeuristicLab.ExperimentGeneration.DataAnalysis.Wizard.WizardPageEventHandler(this.MediumAnalysisPage_WizardBack);
60      this.Controls.SetChildIndex(this.progressBar1, 0);
61      this.Controls.SetChildIndex(this.label1, 0);
62      this.Controls.SetChildIndex(this.wizardBanner, 0);
63      this.ResumeLayout(false);
64      this.PerformLayout();
65
66    }
67
68    #endregion
69
70    private System.Windows.Forms.ProgressBar progressBar1;
71    private System.Windows.Forms.Label label1;
72
73  }
74}
Note: See TracBrowser for help on using the repository browser.